hadoop2.2.0 core-site.xml--ipc properties

来源:互联网 发布:亚马逊选择centos系统 编辑:程序博客网 时间:2024/05/17 12:19

<!-- ipc properties -->

<property>  <name>ipc.client.idlethreshold</name>  <value>4000</value>  <description>Defines the threshold number of connections after which               connections will be inspected for idleness.  </description></property>

注释:

<property>  <name>ipc.client.kill.max</name>  <value>10</value>  <description>Defines the maximum number of clients to disconnect in one go.  </description></property>

注释:

<property>  <name>ipc.client.connection.maxidletime</name>  <value>10000</value>  <description>The maximum time in msec after which a client will bring down the               connection to the server.  </description></property>

注释:

<property>  <name>ipc.client.connect.max.retries</name>  <value>10</value>  <description>Indicates the number of retries a client will make to establish               a server connection.  </description></property>

注释:

<property>  <name>ipc.server.listen.queue.size</name>  <value>128</value>  <description>Indicates the length of the listen queue for servers accepting               client connections.  </description></property>

注释:

<property>  <name>ipc.server.tcpnodelay</name>  <value>false</value>  <description>Turn on/off Nagle's algorithm for the TCP socket connection on   the server. Setting to true disables the algorithm and may decrease latency  with a cost of more/smaller packets.   </description></property>

注释:

<property>  <name>ipc.client.tcpnodelay</name>  <value>false</value>  <description>Turn on/off Nagle's algorithm for the TCP socket connection on   the client. Setting to true disables the algorithm and may decrease latency  with a cost of more/smaller packets.   </description></property>

注释:

0 0
原创粉丝点击