EricJoy2048 commented on code in PR #4405: URL: https://github.com/apache/seatunnel/pull/4405#discussion_r1668070960
########## docs/en/connector-v2/sink/Hudi.md: ########## @@ -0,0 +1,98 @@ +# Hudi + +> Hudi sink connector + +## Description + +Used to write data to Hudi. + +## Key features + +- [x] [exactly-once](../../concept/connector-v2-features.md) +- [x] [cdc](../../concept/connector-v2-features.md) + +## Options + +| name | type | required | default value | +|----------------------------|--------|----------|---------------| +| table_name | string | yes | - | +| table_dfs_path | string | yes | - | +| conf_files_path | string | no | - | +| record_key_fields | string | no | - | +| partition_fields | string | no | - | +| table_type | enum | no | copy_on_write | +| op_type | enum | no | insert | +| batch_interval_ms | Int | no | 1000 | +| insert_shuffle_parallelism | Int | no | 2 | +| upsert_shuffle_parallelism | Int | no | 2 | +| min_commits_to_keep | Int | no | 20 | +| max_commits_to_keep | Int | no | 30 | +| common-options | config | no | - | + +### table_name [string] + +`table_name` The name of hudi table. + +### table_dfs_path [string] + +`table_dfs_path` The dfs root path of hudi table,such as 'hdfs://nameserivce/data/hudi/hudi_table/'. + +### table_type [string] Review Comment: ```suggestion ### table_type [enum] ``` -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
