[HUDI-2366] fix too many logs (#3543)
This commit is contained in:
@@ -354,7 +354,6 @@ public abstract class AbstractTableFileSystemView implements SyncableFileSystemV
|
|||||||
protected boolean isFileSliceAfterPendingCompaction(FileSlice fileSlice) {
|
protected boolean isFileSliceAfterPendingCompaction(FileSlice fileSlice) {
|
||||||
Option<Pair<String, CompactionOperation>> compactionWithInstantTime =
|
Option<Pair<String, CompactionOperation>> compactionWithInstantTime =
|
||||||
getPendingCompactionOperationWithInstant(fileSlice.getFileGroupId());
|
getPendingCompactionOperationWithInstant(fileSlice.getFileGroupId());
|
||||||
LOG.info("Pending Compaction instant for (" + fileSlice + ") is :" + compactionWithInstantTime);
|
|
||||||
return (compactionWithInstantTime.isPresent())
|
return (compactionWithInstantTime.isPresent())
|
||||||
&& fileSlice.getBaseInstantTime().equals(compactionWithInstantTime.get().getKey());
|
&& fileSlice.getBaseInstantTime().equals(compactionWithInstantTime.get().getKey());
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user