Hadoop HDFS: the directory item limit is exceed: limit=1048576问题的解决
问题描述: 1.文件无法写入hadoop hdfs文件系统; 2.hadoop namenode日志记录 1 thedirectoryitemlimitisexceed:limit=1048576 3.hadoop单个目录下文件超1048576个,默认limit限制数为1048576,所以要调大limit限制数 解决办法: 1 2 3 4 5 6 7 8 9 10 hdfs-site.xml配置文件添加配置参数 <property> <name>dfs.namenode.fs-limits.max-directory-items< /name > <value>3200000< /value > <description>Definesthemaximumnumberofitemsthatadirectorymay contain.Cannot set thepropertytoavalue less than1or more than 6400000.< /description > <...