This is an automated email from the ASF dual-hosted git repository.
codope 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 67ad499 Removing extraneous warn logs in ClusteringUtils (#4553)
67ad499 is described below
commit 67ad4992e1dec5b1fe214fb00e6b3c1d21d50b80
Author: Sivabalan Narayanan <[email protected]>
AuthorDate: Mon Jan 10 21:50:14 2022 -0500
Removing extraneous warn logs in ClusteringUtils (#4553)
---
.../src/main/java/org/apache/hudi/common/util/ClusteringUtils.java | 1 -
1 file changed, 1 deletion(-)
diff --git
a/hudi-common/src/main/java/org/apache/hudi/common/util/ClusteringUtils.java
b/hudi-common/src/main/java/org/apache/hudi/common/util/ClusteringUtils.java
index 6687e58..1964ae7 100644
--- a/hudi-common/src/main/java/org/apache/hudi/common/util/ClusteringUtils.java
+++ b/hudi-common/src/main/java/org/apache/hudi/common/util/ClusteringUtils.java
@@ -90,7 +90,6 @@ public class ClusteringUtils {
Option<byte[]> content =
metaClient.getActiveTimeline().getInstantDetails(requestedInstant);
if (!content.isPresent() || content.get().length == 0) {
// few operations create requested file without any content. Assume
these are not clustering
- LOG.warn("No content found in requested file for instant " +
pendingReplaceInstant);
return Option.empty();
}
return
Option.of(TimelineMetadataUtils.deserializeRequestedReplaceMetadata(content.get()));