1
0

[HUDI-3293] Fixing default value for clustering small file config to 300MB (#4662)

This commit is contained in:
Sivabalan Narayanan
2022-02-01 08:22:37 -05:00
committed by GitHub
parent f140c58d9e
commit 4e61e5c9ea

View File

@@ -83,7 +83,7 @@ public class HoodieClusteringConfig extends HoodieConfig {
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(300 * 1024 * 1024L))
.sinceVersion("0.7.0")
.withDocumentation("Files smaller than the size specified here are candidates for clustering");