diff --git a/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/config/HoodieIndexConfig.java b/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/config/HoodieIndexConfig.java index 57e201bb21eed..839131cdb864a 100644 --- a/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/config/HoodieIndexConfig.java +++ b/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/config/HoodieIndexConfig.java @@ -73,7 +73,8 @@ public class HoodieIndexConfig extends HoodieConfig { .noDefaultValue() .withValidValues(HBASE.name(), INMEMORY.name(), BLOOM.name(), GLOBAL_BLOOM.name(), SIMPLE.name(), GLOBAL_SIMPLE.name(), BUCKET.name()) - .withDocumentation("Type of index to use. Default is Bloom filter. " + .withDocumentation("Type of index to use. Default is SIMPLE on Spark engine, " + + "and INMEMORY on Flink and Java engines. " + "Possible options are [BLOOM | GLOBAL_BLOOM |SIMPLE | GLOBAL_SIMPLE | INMEMORY | HBASE | BUCKET]. " + "Bloom filters removes the dependency on a external system " + "and is stored in the footer of the Parquet Data Files");