Hadoop伪分布式配置文件

 

 

首页服务器应用

背景:

阅读新闻

Hadoop伪分布式配置文件

[日期:2012-01-01]   来源:Linux社区  作者: Intergret   [字体:]  

HadoopLinux下伪分布式的安装 wordcount实例的运行 详见:

core-site.xml

<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="https://www.linuxidc.com/configuration.xsl"?>

<!-- Put site-specific property overrides in this file. -->

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

<property>
        <name>hadoop.tmp.dir</name>
        <value>/home/wangxing/hadoop-0.20.2/tmpdir</value>
    </property>
</configuration>

hdfs-site.xml

<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="https://www.linuxidc.com/configuration.xsl"?>

<!-- Put site-specific property overrides in this file. -->

<configuration>
    <property>
        <name>dfs.replication</name>
        <value>1</value>
    </property>
   
    <property> 
        <name>dfs.name.dir</name>
        <value>/home/wangxing/hadoop-0.20.2/tmpdir/hdfs/name</value> 
    </property> 
   
    <property> 
        <name>dfs.data.dir</name> 
        <value>/home/wangxing/hadoop-0.20.2/tmpdir/hdfs/data</value> 
    </property>
</configuration>

mapred-site.xml

<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="https://www.linuxidc.com/configuration.xsl"?>

<!-- Put site-specific property overrides in this file. -->

<configuration>
    <property>
        <name>mapred.job.tracker</name>
        <value>localhost:9001</value>
    </property>

<property> 
        <name>mapred.local.dir</name> 
        <value>/home/wangxing/hadoop-0.20.2/tmpdir/mapred/local</value> 
    </property> 
   
    <property> 
        <name>mapred.system.dir</name> 
        <value>/home/wangxing/hadoop-0.20.2/tmpdir/mapred/system</value> 
    </property>

</configuration>

Hadoop在Linux下伪分布式的安装 wordcount实例的运行

Hodoop 伪分布式环境配置

相关资讯       Hadoop 

   

本文评论   查看全部评论 (0)


评论声明

尊重网上道德,遵守中华人民共和国的各项有关法律法规

承担一切因您的行为而直接或间接导致的民事或刑事法律责任

本站管理人员有权保留或删除其管辖留言中的任意内容

本站有权在网站内转载或引用您的评论

参与本评论即表明您已经阅读并接受上述条款

 

 

 

最新资讯

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/pszjw.html