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

sivabalan 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 bf4425b9f3d9 fix: Remove noisy logging when table partition is empty 
(#18290)
bf4425b9f3d9 is described below

commit bf4425b9f3d9750b97dc19acf54e112e6d780c18
Author: Y Ethan Guo <[email protected]>
AuthorDate: Fri Mar 6 12:26:20 2026 -0800

    fix: Remove noisy logging when table partition is empty (#18290)
---
 .../org/apache/hudi/common/table/view/HoodieTableFileSystemView.java     | 1 -
 1 file changed, 1 deletion(-)

diff --git 
a/hudi-common/src/main/java/org/apache/hudi/common/table/view/HoodieTableFileSystemView.java
 
b/hudi-common/src/main/java/org/apache/hudi/common/table/view/HoodieTableFileSystemView.java
index ab2fdcd3cf6f..70f81ffa4cee 100644
--- 
a/hudi-common/src/main/java/org/apache/hudi/common/table/view/HoodieTableFileSystemView.java
+++ 
b/hudi-common/src/main/java/org/apache/hudi/common/table/view/HoodieTableFileSystemView.java
@@ -323,7 +323,6 @@ public class HoodieTableFileSystemView extends 
IncrementalTimelineSyncFileSystem
   Stream<HoodieFileGroup> fetchAllStoredFileGroups(String partition) {
     List<HoodieFileGroup> fileGroups = partitionToFileGroupsMap.get(partition);
     if (fileGroups == null || fileGroups.isEmpty()) {
-      LOG.warn("Partition: {} is not available in store", partition);
       return Stream.empty();
     }
     return new ArrayList<>(partitionToFileGroupsMap.get(partition)).stream();

Reply via email to