HADOOP-16452. Increase ipc.maximum.data.length default from 64MB to 128MB. Contributed by Siyao Meng.
Signed-off-by: Wei-Chiu Chuang <weichiu@apache.org>
This commit is contained in:
parent
12a526c080
commit
c75f16db79
@ -82,7 +82,7 @@ public class CommonConfigurationKeys extends CommonConfigurationKeysPublic {
|
||||
public static final String IPC_MAXIMUM_DATA_LENGTH =
|
||||
"ipc.maximum.data.length";
|
||||
/** Default value for IPC_MAXIMUM_DATA_LENGTH. */
|
||||
public static final int IPC_MAXIMUM_DATA_LENGTH_DEFAULT = 64 * 1024 * 1024;
|
||||
public static final int IPC_MAXIMUM_DATA_LENGTH_DEFAULT = 128 * 1024 * 1024;
|
||||
|
||||
/** Max response size a client will accept. */
|
||||
public static final String IPC_MAXIMUM_RESPONSE_LENGTH =
|
||||
|
@ -2213,7 +2213,7 @@
|
||||
|
||||
<property>
|
||||
<name>ipc.maximum.data.length</name>
|
||||
<value>67108864</value>
|
||||
<value>134217728</value>
|
||||
<description>This indicates the maximum IPC message length (bytes) that can be
|
||||
accepted by the server. Messages larger than this value are rejected by the
|
||||
immediately to avoid possible OOMs. This setting should rarely need to be
|
||||
|
Loading…
Reference in New Issue
Block a user