码迷,mamicode.com
首页 > Windows程序 > 详细

hadoop在windows上的配置文件

时间:2018-11-20 21:43:53      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:des   ram   mis   false   file   shu   hadoop   node   for   

core-site.xml

<configuration>
    <property>
        <name>hadoop.tmp.dir</name> 
        <value>file:/D:/data/hdfs/tmp</value>
        <final>true</final>
        <description>A base for other temporary directories.</description>
    </property>
    <property>
        <name>fs.defaultFS</name>
        <value>hdfs://tim:8020</value>
        <final>true</final>
    </property>
</configuration>

hdfs-site.xml

<configuration>
  <property>
    <name>dfs.replication</name>
    <value>1</value>
  </property>
  <property>
    <name>dfs.name.dir</name>
    <value>file:/D:/data/hdfs/name</value>
  </property>
  <property>
    <name>dfs.data.dir</name>
    <value>file:/D:/data/hdfs/data</value>
  </property>
  <property>
    <name>dfs.permissions</name>
    <value>false</value>
  </property>
</configuration>

mapred-site.xml

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

yarn-site.xml

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

 

hadoop在windows上的配置文件

标签:des   ram   mis   false   file   shu   hadoop   node   for   

原文地址:https://www.cnblogs.com/timlong/p/9991662.html

(0)
(1)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!