Browse Source

HDFS-8443. Document dfs.namenode.service.handler.count in hdfs-site.xml. Contributed by J.Andreina.

Akira Ajisaka 10 years ago
parent
commit
d725dd8af6

+ 3 - 0
hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt

@@ -585,6 +585,9 @@ Release 2.8.0 - UNRELEASED
 
 
     HDFS-8482. Rename BlockInfoContiguous to BlockInfo. (Zhe Zhang via wang)
     HDFS-8482. Rename BlockInfoContiguous to BlockInfo. (Zhe Zhang via wang)
 
 
+    HDFS-8443. Document dfs.namenode.service.handler.count in hdfs-site.xml.
+    (J.Andreina via aajisaka)
+
   OPTIMIZATIONS
   OPTIMIZATIONS
 
 
     HDFS-8026. Trace FSOutputSummer#writeChecksumChunks rather than
     HDFS-8026. Trace FSOutputSummer#writeChecksumChunks rather than

+ 15 - 1
hadoop-hdfs-project/hadoop-hdfs/src/main/resources/hdfs-default.xml

@@ -602,7 +602,21 @@
 <property>
 <property>
   <name>dfs.namenode.handler.count</name>
   <name>dfs.namenode.handler.count</name>
   <value>10</value>
   <value>10</value>
-  <description>The number of server threads for the namenode.</description>
+  <description>The number of Namenode RPC server threads that listen to
+  requests from clients.
+  If dfs.namenode.servicerpc-address is not configured then
+  Namenode RPC server threads listen to requests from all nodes.
+  </description>
+</property>
+
+<property>
+  <name>dfs.namenode.service.handler.count</name>
+  <value>10</value>
+  <description>The number of Namenode RPC server threads that listen to
+  requests from DataNodes and from all other non-client nodes.
+  dfs.namenode.service.handler.count will be valid only if
+  dfs.namenode.servicerpc-address is configured.
+  </description>
 </property>
 </property>
 
 
 <property>
 <property>