This is an automated email from the ASF dual-hosted git repository.
danny0405 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/master by this push:
new 5bde36d904f [HUDI-7683] Make HoodieMetadataMetrics log level debug ro
reduce noise (#11114)
5bde36d904f is described below
commit 5bde36d904fa4c4b004f109d4cb9e75895d7dd83
Author: Sagar Sumit <[email protected]>
AuthorDate: Mon Apr 29 05:50:50 2024 +0530
[HUDI-7683] Make HoodieMetadataMetrics log level debug ro reduce noise
(#11114)
---
.../src/main/java/org/apache/hudi/metadata/HoodieMetadataMetrics.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/hudi-common/src/main/java/org/apache/hudi/metadata/HoodieMetadataMetrics.java
b/hudi-common/src/main/java/org/apache/hudi/metadata/HoodieMetadataMetrics.java
index c9952b89308..970ad0743f4 100644
---
a/hudi-common/src/main/java/org/apache/hudi/metadata/HoodieMetadataMetrics.java
+++
b/hudi-common/src/main/java/org/apache/hudi/metadata/HoodieMetadataMetrics.java
@@ -153,7 +153,7 @@ public class HoodieMetadataMetrics implements Serializable {
}
protected void incrementMetric(String action, long value) {
- LOG.info(String.format("Updating metadata metrics (%s=%d) in %s", action,
value, metricsRegistry));
+ LOG.debug(String.format("Updating metadata metrics (%s=%d) in %s", action,
value, metricsRegistry));
Option<HoodieGauge<Long>> gaugeOpt = metrics.registerGauge(action);
gaugeOpt.ifPresent(gauge -> gauge.setValue(gauge.getValue() + value));
}