zhilinli123 commented on code in PR #5231:
URL: https://github.com/apache/seatunnel/pull/5231#discussion_r1285302823
##########
docs/en/connector-v2/sink/Kudu.md:
##########
@@ -2,50 +2,80 @@
> Kudu sink connector
-## Description
+## Support Those Engines
-Write data to Kudu.
-
-The tested kudu version is 1.11.1.
+> Spark<br/>
+> Flink<br/>
+> SeaTunnel Zeta<br/>
## Key features
+- [x] [batch](../../concept/connector-v2-features.md)
+- [x] [stream](../../concept/connector-v2-features.md)
- [ ] [exactly-once](../../concept/connector-v2-features.md)
-
-## Options
-
-| name | type | required | default value |
-|----------------|--------|----------|---------------|
-| kudu_master | string | yes | - |
-| kudu_table | string | yes | - |
-| save_mode | string | yes | - |
-| common-options | | no | - |
-
-### kudu_master [string]
-
-`kudu_master` The address of kudu master,such as '192.168.88.110:7051'.
-
-### kudu_table [string]
-
-`kudu_table` The name of kudu table..
-
-### save_mode [string]
-
-Storage mode, we need support `overwrite` and `append`. `append` is now
supported.
-
-### common options
-
-Sink plugin common parameters, please refer to [Sink Common
Options](common-options.md) for details.
-
-## Example
-
-```bash
-
- kudu {
+- [x] [column projection](../../concept/connector-v2-features.md)
+- [x] [parallelism](../../concept/connector-v2-features.md)
+- [ ] [support user-defined split](../../concept/connector-v2-features.md)
+
+## Data Type Mapping
+
+| SeaTunnel Data type | kudu Data type |
+|---------------------|--------------------------|
+| BOOLEAN | BOOL |
+| INT | INT8<br/>INT16<br/>INT32 |
+| BIGINT | INT64 |
+| DECIMAL(20,0) | DECIMAL32 |
+| FLOAT | FLOAT |
+| DOUBLE | DOUBLE |
+| STRING | STRING |
+| TIMESTAMP | UNIXTIME_MICROS |
+| ARRAY | BINARY |
+
+## Sink Options
+
+| Name | Type | Required | Default |
Description |
+|----------------|--------|----------|---------|----------------------------------------------------------------------------------------------------------|
+| kudu_master | String | Yes | - | The address of kudu
master,such as '192.168.88.110:7051'.
|
+| kudu_table | String | Yes | - | The name of kudu table.
|
+| save_mode | String | No | - | Storage mode, we need support
`overwrite` and `append`. `append` is now supported. |
Review Comment:
Example each write mode thanks
--
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]