GitHub user interma opened a pull request:
https://github.com/apache/incubator-hawq/pull/1377
HAWQ-1627. Support setting the max protocol message size when talking
with HDFS
**Fix what?**
User can set the max protocol message size, e.g.
In _etc/hdfs-client.xml_:
```
<property>
<name>ipc.maximum.data.length</name>
<value>67108864</value>
</property>
```
**How to fix?**
Use `CodedInputStream.SetTotalBytesLimit()` set the max size.
**Test?**
No test, reason:
It can be covered by former tests.
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/interma/interma-hawq ipc_maxdata
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/incubator-hawq/pull/1377.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #1377
----
commit 8ac2663668e353078fff02f48debfd8223911e7c
Author: interma <interma@...>
Date: 2018-06-20T05:02:44Z
HAWQ-1627. Support setting the max protocol message size when talking
with HDFS
----
---