1
0

[MINOR] Fix typo in the doc of BULK_INSERT_SORT_MODE (#4652)

This commit is contained in:
wangxianghu
2022-01-20 15:34:56 +04:00
committed by GitHub
parent b7a79aa943
commit 14d08bb64c

View File

@@ -288,7 +288,7 @@ public class HoodieWriteConfig extends HoodieConfig {
public static final ConfigProperty<String> BULK_INSERT_SORT_MODE = ConfigProperty
.key("hoodie.bulkinsert.sort.mode")
.defaultValue(BulkInsertSortMode.GLOBAL_SORT.toString())
.withDocumentation("Sorting modes to use for sorting records for bulk insert. This is user when user "
.withDocumentation("Sorting modes to use for sorting records for bulk insert. This is use when user "
+ BULKINSERT_USER_DEFINED_PARTITIONER_CLASS_NAME.key() + "is not configured. Available values are - "
+ "GLOBAL_SORT: this ensures best file sizes, with lowest memory overhead at cost of sorting. "
+ "PARTITION_SORT: Strikes a balance by only sorting within a partition, still keeping the memory overhead of writing "