美文网首页
hadoop基本运行

hadoop基本运行

作者: xncode | 来源:发表于2017-09-30 11:39 被阅读0次

Hadoop运行模式:

本地 所有程序在一个JVM中运行
伪分布 多进程运行
分布 多机器

关键配置:

本地 不需要任何配置,采用默认值

伪分布

    core-site.xml    fs.defaultFS    hdfs://localhost/
    hdfs-site.xml    dfs.replication    1
    yarn-site.xml    yarn.resourcemanager.hostname    localhost
                            yarn.nodemanager.aux-services    mapreduce_shuffle

分布

    core-site.xml    fs.defaultFS    hdfs://master/
    hdfs-site.xml    dfs.replication    3(默认值)
    yarn-site.xml    yarn.resourcemanager.hostname    master

相关文章

网友评论

      本文标题:hadoop基本运行

      本文链接:https://www.haomeiwen.com/subject/vueuextx.html