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

danny0405 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 b5f749ccbf1 [HUDI-6463] Fix deluge loggings of 
HoodieBackedTableMetadataWriter#getMetadataPartitionsToUpdate (#9107)
b5f749ccbf1 is described below

commit b5f749ccbf14de0f2cdced0918719ccdc113f2d5
Author: Danny Chan <[email protected]>
AuthorDate: Sat Jul 1 18:06:51 2023 +0800

    [HUDI-6463] Fix deluge loggings of 
HoodieBackedTableMetadataWriter#getMetadataPartitionsToUpdate (#9107)
---
 .../java/org/apache/hudi/metadata/HoodieBackedTableMetadataWriter.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/metadata/HoodieBackedTableMetadataWriter.java
 
b/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/metadata/HoodieBackedTableMetadataWriter.java
index 6e714562ec3..0908ad79708 100644
--- 
a/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/metadata/HoodieBackedTableMetadataWriter.java
+++ 
b/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/metadata/HoodieBackedTableMetadataWriter.java
@@ -821,7 +821,7 @@ public abstract class HoodieBackedTableMetadataWriter 
implements HoodieTableMeta
       return partitionsToUpdate;
     }
     // fallback to all enabled partitions if table config returned no 
partitions
-    LOG.warn("There are no partitions to update according to table config. 
Falling back to enabled partition types in the write config.");
+    LOG.debug("There are no partitions to update according to table config. 
Falling back to enabled partition types in the write config.");
     return 
getEnabledPartitionTypes().stream().map(MetadataPartitionType::getPartitionPath).collect(Collectors.toSet());
   }
 

Reply via email to