Last active
December 25, 2015 13:19
-
-
Save oza/6982570 to your computer and use it in GitHub Desktop.
How to enable resourcemanager's ha mode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<configuration> | |
<!-- Site specific YARN configuration properties --> | |
<property> | |
<name>yarn.resourcemanager.ha.enabled</name> | |
<value>true</value> | |
<description></description> | |
</property> | |
<property> | |
<name>yarn.resourcemanager.ha.id</name> | |
<value>rm1</value> | |
<description></description> | |
</property> | |
<property> | |
<name>yarn.resourcemanager.ha.rm-ids</name> | |
<value>rm1</value> | |
<description></description> | |
</property> | |
</configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment