From 67ad4992e1dec5b1fe214fb00e6b3c1d21d50b80 Mon Sep 17 00:00:00 2001 From: Sivabalan Narayanan Date: Mon, 10 Jan 2022 21:50:14 -0500 Subject: [PATCH] Removing extraneous warn logs in ClusteringUtils (#4553) --- .../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 6687e583a..1964ae7ef 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 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()));