本文主要是介绍hadoop java.io.IOException: Xceiver count 4097 exceeds the limit of concurrent xcievers,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
datanode出现 java.io.IOException: Xceiver count 4097 exceeds the limit of concurrent xcievers
hdfs-site.xml修改参数dfs.datanode.max.transfer.threads为8192
<property>
<name>dfs.datanode.max.transfer.threads</name>
<value>8192</value>
<description>
Specifies the maximum number of threads to use for transferring data
in and out of the DN.
</description>
</property>
然后重启hdfs
在hadoop1.x为参数dfs.datanode.max.xcievers
这篇关于hadoop java.io.IOException: Xceiver count 4097 exceeds the limit of concurrent xcievers的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!