1
0

[HUDI-3426] Sync datasource clustering config (#4828)

This commit is contained in:
Sagar Sumit
2022-02-17 05:32:49 +05:30
committed by GitHub
parent aaddaf524a
commit ba0afe1426
2 changed files with 9 additions and 15 deletions

View File

@@ -114,7 +114,8 @@ public class HoodieClusteringConfig extends HoodieConfig {
.key("hoodie.clustering.inline")
.defaultValue("false")
.sinceVersion("0.7.0")
.withDocumentation("Turn on inline clustering - clustering will be run after each write operation is complete");
.withDocumentation("Turn on inline clustering - clustering will be run after each write operation is complete")
.withAlternatives("hoodie.datasource.clustering.inline.enable");
public static final ConfigProperty<String> INLINE_CLUSTERING_MAX_COMMITS = ConfigProperty
.key("hoodie.clustering.inline.max.commits")
@@ -192,7 +193,8 @@ public class HoodieClusteringConfig extends HoodieConfig {
.key("hoodie.clustering.async.enabled")
.defaultValue("false")
.sinceVersion("0.7.0")
.withDocumentation("Enable running of clustering service, asynchronously as inserts happen on the table.");
.withDocumentation("Enable running of clustering service, asynchronously as inserts happen on the table.")
.withAlternatives("hoodie.datasource.clustering.async.enable");
public static final ConfigProperty<Boolean> PRESERVE_COMMIT_METADATA = ConfigProperty
.key("hoodie.clustering.preserve.commit.metadata")