Created
January 27, 2015 05:28
-
-
Save ywchiu/f0799642f54c21e17192 to your computer and use it in GitHub Desktop.
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
core-site.xml | |
================================= | |
<property> | |
<name>fs.defaultFS</name> | |
<value>hdfs://ec2-54-148-213-237.us-west-2.compute.amazonaws.com</value> | |
</property> | |
<property> | |
<name>hadoop.tmp.dir</name> | |
<value>/home/hadoop/local/var/hadoop/tmp/hadoop-${user.name}</value> | |
</property> | |
mapred-site.xml | |
================================= | |
<property> | |
<name>mapreduce.jobtracker.staging.root.dir</name> | |
<value>/user</value> | |
</property> | |
yarn-site.xml | |
================================= | |
<property> | |
<name>yarn.nodemanager.aux-services</name> | |
<value>mapreduce_shuffle</value> | |
</property> | |
<property> | |
<name>yarn.nodemanager.aux-services.mapreduce.shuffle.class</name> | |
<value>org.apache.hadoop.mapred.ShuffleHandler</value> | |
</property> | |
<property> | |
<name>yarn.resourcemanager.hostname</name> | |
<value>ec2-54-148-213-237.us-west-2.compute.amazonaws.com</value> | |
</property> | |
hdfs-site.xml | |
================================= | |
<property> | |
<name>dfs.replication</name> | |
<value>3</value> | |
</property> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment