Author: jdcryans
Date: Mon Apr 18 21:09:08 2011
New Revision: 1094745
URL: http://svn.apache.org/viewvc?rev=1094745&view=rev
Log:
HBASE-3795 Remove the "Cache hit for row" message
Modified:
hbase/trunk/CHANGES.txt
hbase/trunk/src/main/java/org/apache/hadoop/hbase/client/HConnectionManager.java
Modified: hbase/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/hbase/trunk/CHANGES.txt?rev=1094745&r1=1094744&r2=1094745&view=diff
==============================================================================
--- hbase/trunk/CHANGES.txt (original)
+++ hbase/trunk/CHANGES.txt Mon Apr 18 21:09:08 2011
@@ -232,6 +232,7 @@ Release 0.90.3 - Unreleased
HBASE-3747 ReplicationSource should differanciate remote and local
exceptions
HBASE-3652 Speed up tests by lowering some sleeps
HBASE-3767 Improve how HTable handles threads used for multi actions
+ HBASE-3795 Remove the "Cache hit for row" message
TASKS
HBASE-3748 Add rolling of thrift/rest daemons to graceful_stop.sh script
Modified:
hbase/trunk/src/main/java/org/apache/hadoop/hbase/client/HConnectionManager.java
URL:
http://svn.apache.org/viewvc/hbase/trunk/src/main/java/org/apache/hadoop/hbase/client/HConnectionManager.java?rev=1094745&r1=1094744&r2=1094745&view=diff
==============================================================================
---
hbase/trunk/src/main/java/org/apache/hadoop/hbase/client/HConnectionManager.java
(original)
+++
hbase/trunk/src/main/java/org/apache/hadoop/hbase/client/HConnectionManager.java
Mon Apr 18 21:09:08 2011
@@ -822,14 +822,6 @@ public class HConnectionManager {
HRegionLocation rl = tableLocations.get(row);
if (rl != null) {
- if (LOG.isDebugEnabled()) {
- LOG.debug("Cache hit for row <" +
- Bytes.toStringBinary(row) +
- "> in tableName " + Bytes.toString(tableName) +
- ": location server " + rl.getServerAddress() +
- ", location region name " +
- rl.getRegionInfo().getRegionNameAsString());
- }
return rl;
}