This is an automated email from the ASF dual-hosted git repository.
bbeaudreault pushed a commit to branch branch-2
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-2 by this push:
new 913ca3ed3ce HBASE-27391 Downgrade ERROR log to DEBUG in
ConnectionUtils.updateStats (#4804)
913ca3ed3ce is described below
commit 913ca3ed3ce6133688e90820124efb6dc7f2010e
Author: Bryan Beaudreault <[email protected]>
AuthorDate: Wed Sep 28 11:31:39 2022 -0400
HBASE-27391 Downgrade ERROR log to DEBUG in ConnectionUtils.updateStats
(#4804)
Signed-off-by: Duo Zhang <[email protected]>
---
.../main/java/org/apache/hadoop/hbase/client/ConnectionUtils.java | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionUtils.java
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionUtils.java
index aaeece8d8fc..5c88af3780c 100644
---
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionUtils.java
+++
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionUtils.java
@@ -604,8 +604,10 @@ public final class ConnectionUtils {
resp.getResults().forEach((regionName, regionResult) -> {
ClientProtos.RegionLoadStats stat = regionResult.getStat();
if (stat == null) {
- LOG.error("No ClientProtos.RegionLoadStats found for server={},
region={}", serverName,
- Bytes.toStringBinary(regionName));
+ if (LOG.isDebugEnabled()) {
+ LOG.debug("No ClientProtos.RegionLoadStats found for server={},
region={}", serverName,
+ Bytes.toStringBinary(regionName));
+ }
return;
}
RegionLoadStats regionLoadStats =
ProtobufUtil.createRegionLoadStats(stat);