必须具有核心站点hdfs-site mapred-site和yarn-site.xml的属性

时间:2016-12-28 07:20:21

标签: hadoop yarn hadoop2

任何人都可以告诉我必须拥有Core-site.xml,hdfs-site.xml,mapred-site.xml和yarn-site.xml的属性,没有这些属性,hadoop无法启动?

1 个答案:

答案 0 :(得分:1)

以下设置适用于独立和伪节点设置的Hadoop 2.x.x。

芯-site.xml中

<configuration>
<property>
  <name>fs.default.name</name>
    <value>hdfs://localhost:9000</value>
</property>
</configuration>

HDFS-site.xml中

<configuration>
<property>
 <name>dfs.replication</name>
 <value>1</value>
</property>

<property>
  <name>dfs.name.dir</name>
    <value>file:///home/hadoop/hadoopdata/hdfs/namenode</value>
</property>

<property>
  <name>dfs.data.dir</name>
    <value>file:///home/hadoop/hadoopdata/hdfs/datanode</value>
</property>
</configuration>

mapred-site.xml中

<configuration>
 <property>
  <name>mapreduce.framework.name</name>
   <value>yarn</value>
 </property>
</configuration>

纱-site.xml中

<configuration>
 <property>
  <name>yarn.nodemanager.aux-services</name>
    <value>mapreduce_shuffle</value>
 </property>
</configuration>

还可以参考single node setup

的apache hadoop文档