You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by le...@apache.org on 2021/08/26 08:46:15 UTC

[hudi] branch master updated: [HUDI-2366] fix too many logs (#3543)

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

leesf 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 be57e42  [HUDI-2366] fix  too many logs (#3543)
be57e42 is described below

commit be57e422004e93e2fefb2d52052e1e3b8916f6b0
Author: ayachi_nene <17...@qq.com>
AuthorDate: Thu Aug 26 16:45:52 2021 +0800

    [HUDI-2366] fix  too many logs (#3543)
---
 .../org/apache/hudi/common/table/view/AbstractTableFileSystemView.java   | 1 -
 1 file changed, 1 deletion(-)

diff --git a/hudi-common/src/main/java/org/apache/hudi/common/table/view/AbstractTableFileSystemView.java b/hudi-common/src/main/java/org/apache/hudi/common/table/view/AbstractTableFileSystemView.java
index de5cf39..c9d4d95 100644
--- a/hudi-common/src/main/java/org/apache/hudi/common/table/view/AbstractTableFileSystemView.java
+++ b/hudi-common/src/main/java/org/apache/hudi/common/table/view/AbstractTableFileSystemView.java
@@ -354,7 +354,6 @@ public abstract class AbstractTableFileSystemView implements SyncableFileSystemV
   protected boolean isFileSliceAfterPendingCompaction(FileSlice fileSlice) {
     Option<Pair<String, CompactionOperation>> compactionWithInstantTime =
         getPendingCompactionOperationWithInstant(fileSlice.getFileGroupId());
-    LOG.info("Pending Compaction instant for (" + fileSlice + ") is :" + compactionWithInstantTime);
     return (compactionWithInstantTime.isPresent())
         && fileSlice.getBaseInstantTime().equals(compactionWithInstantTime.get().getKey());
   }