Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

How to gracefully stop YARN role on a datanode CDH 6.3.2

avatar
New Contributor

Hi All,

I'm new person is a hadoop world.

Can not find answer on this question.

How to gracefully stop YARN role on a data node and  save or pause running jobs

So the jobs will not exit with killer or crash status.

I know that in ClouderaManager you can decommission yarn role when you can stop it.

Is this a safe way to keep the jobs running and not failed state?

Is this a gracefull yarn role shutdown or where is other way to do this?

 

Please advice me how to do this.

Thank you.

 

1 ACCEPTED SOLUTION

avatar
Contributor

HI,
YARN Graceful decommission will wait for jobs to complete. You can pass the timeout value so that YARN will start decommission after x seconds. If no jobs running within x secs then automatically YARN will start decommission without waiting for timeout to happen.

CM -> Clusters -> yarn -> Configuration -> In search bar (

yarn.resourcemanager.nodemanager-graceful-decommission-timeout-secs)
Set the value and save the configuration and do restart to deploy configs.

To decommission a specific host/more hosts 

CM -> Clusters -> yarn -> Instances (Select the hosts that you want to decommission)

Click -> Actions for selected hosts -> Decommission 
In case you want to decommission all the roles of a host then follow this doc 
https://docs.cloudera.com/documentation/enterprise/6/6.3/topics/cm_mc_host_maint.html#decomm_host

Make sure to mark the answer as the accepted solution. If it resolves you issue !

View solution in original post

3 REPLIES 3

avatar
New Contributor

I made YARM role decommission on a data node.

And now I see map reduce jobs on that data node have status KILLED.

So My guess is "yarn role decommission" is not a graceful shutdown solution.

Please advice how to do proprietyyarn_killed-2.jpg YARN role graceful shutdown on a data node.

 

 

avatar
Master Guru

@xpouser You want to take a look at : https://hadoop.apache.org/docs/stable/hadoop-yarn/hadoop-yarn-site/GracefulDecommission.html

 


Cheers!
Was your question answered? Make sure to mark the answer as the accepted solution.
If you find a reply useful, say thanks by clicking on the thumbs up button.

avatar
Contributor

HI,
YARN Graceful decommission will wait for jobs to complete. You can pass the timeout value so that YARN will start decommission after x seconds. If no jobs running within x secs then automatically YARN will start decommission without waiting for timeout to happen.

CM -> Clusters -> yarn -> Configuration -> In search bar (

yarn.resourcemanager.nodemanager-graceful-decommission-timeout-secs)
Set the value and save the configuration and do restart to deploy configs.

To decommission a specific host/more hosts 

CM -> Clusters -> yarn -> Instances (Select the hosts that you want to decommission)

Click -> Actions for selected hosts -> Decommission 
In case you want to decommission all the roles of a host then follow this doc 
https://docs.cloudera.com/documentation/enterprise/6/6.3/topics/cm_mc_host_maint.html#decomm_host

Make sure to mark the answer as the accepted solution. If it resolves you issue !