You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by si...@apache.org on 2022/01/11 22:29:18 UTC

[hudi] branch release-0.10.1-rc1 updated: Removing extraneous warn logs in ClusteringUtils (#4553)

This is an automated email from the ASF dual-hosted git repository.

sivabalan pushed a commit to branch release-0.10.1-rc1
in repository https://gitbox.apache.org/repos/asf/hudi.git


The following commit(s) were added to refs/heads/release-0.10.1-rc1 by this push:
     new 27628fa  Removing extraneous warn logs in ClusteringUtils (#4553)
27628fa is described below

commit 27628fa1d307563b74f2da7c4b619f98ffb8e1cc
Author: Sivabalan Narayanan <si...@uber.com>
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()));