You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by GitBox <gi...@apache.org> on 2022/01/24 19:30:08 UTC

[GitHub] [hudi] nsivabalan commented on a change in pull request #4662: [HUDI-3293] Fixing default value for clustering small file config

nsivabalan commented on a change in pull request #4662:
URL: https://github.com/apache/hudi/pull/4662#discussion_r791085629



##########
File path: hudi-client/hudi-client-common/src/main/java/org/apache/hudi/config/HoodieClusteringConfig.java
##########
@@ -83,7 +83,7 @@
 
   public static final ConfigProperty<String> PLAN_STRATEGY_SMALL_FILE_LIMIT = ConfigProperty
       .key(CLUSTERING_STRATEGY_PARAM_PREFIX + "small.file.limit")
-      .defaultValue(String.valueOf(600 * 1024 * 1024L))
+      .defaultValue(String.valueOf(100 * 1024 * 1024L))

Review comment:
       @codope : Do you have any thoughts. 
   I went through the jira ticket we have for flipping defaults and saw a note to revisit this default value. 600MB seems high. so, just setting it based on intuition and experience from supporting users from community.  




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org