美文网首页我爱编程
yarn rm日志报Large response size

yarn rm日志报Large response size

作者: 迷茫_小青年 | 来源:发表于2018-05-24 16:06 被阅读0次

yarn resourcemanager log 里经常报一个WARN

org.apache.hadoop.ipc.Server: Large response size 2258478 for call org.apache.hadoop.yarn.api.ApplicationClientProtocolPB.getApplications from 192.168.180.9:53914 Call#59157 Retry#0

有同事帮忙看了下这块的源码发现这个东西没啥影响的。只是告诉一下返回来的数据,超过max ipc response size的默认值了,默认值是 10240。

但是处女座,受不鸟。

在core-site.xml 添加上
<property>
<name>ipc.server.max.response.size</name>
<value>5242880</value>
</property>

ipc.server.max.response.size 这个参数是非公共参数,也就是说,这个参数在core-site官方文档里查不到这参数。

https://blog.csdn.net/baiyangfu_love/article/details/78346222

相关文章

网友评论

    本文标题:yarn rm日志报Large response size

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