EricJoy2048 commented on code in PR #2889:
URL: 
https://github.com/apache/incubator-seatunnel/pull/2889#discussion_r984406200


##########
docs/en/connector-v2/sink/kafka.md:
##########
@@ -0,0 +1,124 @@
+# Kafka
+
+> Kafka sink connector
+
+## Description
+
+Write Rows to a Kafka topic.
+
+## Key features
+
+- [x] [exactly-once](../../concept/connector-v2-features.md)
+
+By default, we will use 2pc to guarantee the message is sent to kafka exactly 
once.
+
+- [ ] [schema projection](../../concept/connector-v2-features.md)
+
+## Options
+
+| name               | type   | required | default value |
+| ------------------ | ------ | -------- | ------------- |
+| topic              | string | yes      | -             |
+| bootstrap.servers  | string | yes      | -             |
+| kafka.*            | string | no       | -             |
+| semantic           | string | no       | NON           |
+| partition          | int    | no       | -             |
+| transaction_prefix | string | no       | -             |
+| common-options     |        | no       | -             |
+
+### topic [string]
+
+Kafka Topic.
+
+### bootstrap.servers [string]
+
+Kafka Brokers List.
+
+### producer [string]

Review Comment:
   Replace with `### kafka.* [kafka producer config]`.



-- 
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]

Reply via email to