You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by mb...@apache.org on 2012/10/17 14:50:41 UTC

svn commit: r1399209 - /hbase/branches/0.89-fb/src/main/resources/hbase-default.xml

Author: mbautin
Date: Wed Oct 17 12:50:40 2012
New Revision: 1399209

URL: http://svn.apache.org/viewvc?rev=1399209&view=rev
Log:
[master] Configure Thrift server in hbase-default.xml

Author: mbautin

Summary: Configure both embedded and stand-alone Thrift server with 64 worker and selector threads by default.

Test Plan: testinprod

Reviewers: kannan, rthiessen

Reviewed By: kannan

CC: hbase-eng@

Differential Revision: https://phabricator.fb.com/D602083

Modified:
    hbase/branches/0.89-fb/src/main/resources/hbase-default.xml

Modified: hbase/branches/0.89-fb/src/main/resources/hbase-default.xml
URL: http://svn.apache.org/viewvc/hbase/branches/0.89-fb/src/main/resources/hbase-default.xml?rev=1399209&r1=1399208&r2=1399209&view=diff
==============================================================================
--- hbase/branches/0.89-fb/src/main/resources/hbase-default.xml (original)
+++ hbase/branches/0.89-fb/src/main/resources/hbase-default.xml Wed Oct 17 12:50:40 2012
@@ -543,6 +543,28 @@
     </description>
   </property>
 
+  <!-- Thrift proxy configuration -->
+  <property>
+    <name>hbase.thrift.selector.threads</name>
+    <value>64</value>
+  </property>
+
+  <property>
+    <name>hbase.thrift.worker.threads</name>
+    <value>64</value>
+  </property>
+
+  <!-- Embedded Thrift server configuration -->
+  <property>
+    <name>hbase.regionserver.thrift.selector.threads</name>
+    <value>64</value>
+  </property>
+
+  <property>
+    <name>hbase.regionserver.thrift.worker.threads</name>
+    <value>64</value>
+  </property>
+
   <!--
   The following three properties are used together to create the list of
   host:peer_port:leader_port quorum servers for ZooKeeper.