You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ns...@apache.org on 2011/10/11 19:44:34 UTC

svn commit: r1181964 - /hbase/branches/0.89/src/main/java/org/apache/hadoop/hbase/client/HTable.java

Author: nspiegelberg
Date: Tue Oct 11 17:44:33 2011
New Revision: 1181964

URL: http://svn.apache.org/viewvc?rev=1181964&view=rev
Log:
Different the hbase table pool with other thread pool

Summary:
As reported by Charles, it would be nice to distinguish the hbase table pool
with other thread pool.

As Jonathan suggests, I will create a jira for open source later.

Test Plan: running all the unit test

Reviewers: kannan, kranganathan, cgthayer, vinodv, pkhemani, jgray, mbautin,
dhruba

Reviewed By: dhruba

CC: hbase@lists, , dhruba, vinodv

Differential Revision: 316505

Modified:
    hbase/branches/0.89/src/main/java/org/apache/hadoop/hbase/client/HTable.java

Modified: hbase/branches/0.89/src/main/java/org/apache/hadoop/hbase/client/HTable.java
URL: http://svn.apache.org/viewvc/hbase/branches/0.89/src/main/java/org/apache/hadoop/hbase/client/HTable.java?rev=1181964&r1=1181963&r2=1181964&view=diff
==============================================================================
--- hbase/branches/0.89/src/main/java/org/apache/hadoop/hbase/client/HTable.java (original)
+++ hbase/branches/0.89/src/main/java/org/apache/hadoop/hbase/client/HTable.java Tue Oct 11 17:44:33 2011
@@ -1131,7 +1131,7 @@ public class HTable implements HTableInt
             SecurityManager s = System.getSecurityManager();
             group = (s != null)? s.getThreadGroup() :
                                  Thread.currentThread().getThreadGroup();
-            namePrefix = "pool-" +
+            namePrefix = "hbase-table-pool" +
                           poolNumber.getAndIncrement() +
                          "-thread-";
         }