zoukankan      html  css  js  c++  java
  • 修改HDFS块大小

    环境:OS:Centos 6.5 x64 & Soft:Hadoop 1.2.1

    1、查看当前块大小,默认64M。

    [huser@master hadoop-1.2.1]$ bin/hadoop fs -stat "%o" ./in/test1.txt
    67108864

    2、修改hdfs-site.conf配置文件,增加全局参数dfs.block.size

    [huser@master hadoop-1.2.1]$ cat conf/hdfs-site.xml 
    <?xml version="1.0"?>
    <?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
    
    <!-- Put site-specific property overrides in this file. -->
    
    <configuration>
     <property>
      <name>dfs.replication</name>
      <value>1</value>
     </property>
     <property>
      <name>dfs.block.size</name>
      <value>134217728</value>
     </property>
    </configuration>

    3、上传个新文件,查看文件块大小。

    [huser@master hadoop-1.2.1]$ bin/hadoop fs -put ../input/tes4.txt ./in
    
    [huser@master hadoop-1.2.1]$ bin/hadoop fs -stat "%o" ./in/test4.txt
    134217728

  • 相关阅读:
    07组 Beta冲刺 (2/5)
    第07组 Beta冲刺 (1/5)
    第07组 Alpha冲刺 总结
    ES相关
    集群与分布式
    idea使用总结
    Tomcat配置与启动与访问
    Web基础
    B/S与C/S架构
    一周视频学习总结
  • 原文地址:https://www.cnblogs.com/guarder/p/3704214.html
Copyright © 2011-2022 走看看