Browse Source

HADOOP-2598 Remove chatty debug logging from 2443 patch

git-svn-id: https://svn.apache.org/repos/asf/lucene/hadoop/trunk@612025 13f79535-47bb-0310-9956-ffa450edef68
Michael Stack 17 years ago
parent
commit
423c4d92be

+ 1 - 0
src/contrib/hbase/CHANGES.txt

@@ -125,6 +125,7 @@ Trunk (unreleased changes)
    HADOOP-2500 Unreadable region kills region servers
    HADOOP-2587 Splits blocked by compactions cause region to be offline for
                duration of compaction. 
+               (Bryan Duxbury via Stack)
    
   IMPROVEMENTS
    HADOOP-2401 Add convenience put method that takes writable

+ 0 - 4
src/contrib/hbase/src/java/org/apache/hadoop/hbase/HConnectionManager.java

@@ -377,10 +377,6 @@ public class HConnectionManager implements HConstants {
       if (useCache) {
         location = getCachedLocation(tableName, row);
         if (location != null) {
-          LOG.debug("Looking in " + parentTable + " for " 
-            + tableName + "/" + row
-            + ", got a cache hit with " 
-            + location.getRegionInfo().getRegionName());
           return location;
         }
       } else{

+ 0 - 1
src/contrib/hbase/src/java/org/apache/hadoop/hbase/HRegionServer.java

@@ -1460,7 +1460,6 @@ public class HRegionServer implements HConstants, HRegionInterface, Runnable {
       HStoreKey key = new HStoreKey();
       TreeMap<Text, byte []> results = new TreeMap<Text, byte []>();
       while (s.next(key, results)) {
-/*        LOG.debug("RegionServer scanning on row " + key.getRow());*/
         for(Map.Entry<Text, byte []> e: results.entrySet()) {
           values.put(new HStoreKey(key.getRow(), e.getKey(), key.getTimestamp()),
             new ImmutableBytesWritable(e.getValue()));