Skip to content

Instantly share code, notes, and snippets.

@syaffers
Last active April 7, 2021 08:56
Show Gist options
  • Save syaffers/d0b081cf0e650ab42f3361b10c1b6a8b to your computer and use it in GitHub Desktop.
Save syaffers/d0b081cf0e650ab42f3361b10c1b6a8b to your computer and use it in GitHub Desktop.
Example YARN site configuration for COSC class
<configuration>
<property>
<name>yarn.resourcemanager.hostname</name>
<value>your_hostname</value>
</property>
<property>
<name>yarn.nodemanager.aux-services</name>
<value>mapreduce_shuffle</value>
</property>
<property>
<name>yarn.resourcemanager.aux-services.mapreduce_shuffle.class</name>
<value>org.apache.hadoop.mapred.ShuffleHandler</value>
</property>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment