No containers running but still instance not decommissioned

0

Hi Team, We have EMR 6.10 cluster where flink jobs submitted to existing application. Container was running in task node in my case. Then I resized the task instance group from 1 to 0 in task instance group. The running job was completed in a couple of minutes as per Yarn RM UI and there is no container running but the node stuck in decommissioning State for 1hr and then it removed.

I can configure yarn.resourcemanager.nodemanager-graceful'decommission-timeout-secs, but as per the EMR doc, "If there is no task running EMR remove the instance as per scaling policy", but seems something issue here, any leads are highly appreciated. Thanks in advance

Scott M
已提问 2 个月前310 查看次数
1 回答
4
已接受的回答

Hello,

Hadoop 3.3.3 introduced a change in YARN (YARN-9608) that keeps nodes where containers ran in a decommissioning state until the application completes. This change ensures that local data such as shuffle data doesn't get lost, and you don' need to re-run the job. This approach might also lead to underutilization of resources on clusters with or without managed scaling enabled.

With Amazon EMR releases 6.11.0 and higher as well as 6.8.1, 6.9.1, and 6.10.1, the value of yarn.resourcemanager.decommissioning-nodes-watcher.wait-for-applications is set to false in yarn-site.xml to resolve this issue.

yarn.resourcemanager.decommissioning-nodes-watcher.wait-for-applications - If true (the default), the resource manager waits for all containers, as well as all applications associated with those containers, to finish before gracefully decommissioning a node.

If false, the resource manager only waits for containers, but not applications, to finish. For map-only jobs or other jobs in which mappers do not need to serve shuffle data, this allows nodes to be decommissioned as soon as their containers are finished as opposed to when the job is done.

Add property yarn.resourcemanager.decommissioning-nodes-watcher.wait-for-app-masters. - If false, during graceful decommission, when the resource manager waits for all containers on a node to finish, it will not wait for app master containers to finish. Defaults to true. This property should only be set to false if app master failure is recoverable.

References:

https://docs.aws.amazon.com/emr/latest/ReleaseGuide/emr-6101-release.html

AWS
支持工程师
已回答 2 个月前
profile picture
专家
已审核 2 个月前
  • Excellent, thank you so much for this information!

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则