Hisoka-X commented on code in PR #7131: URL: https://github.com/apache/seatunnel/pull/7131#discussion_r1668508493
########## docs/en/concept/connector-v2-features.md: ########## @@ -69,3 +69,10 @@ For sink connector, the sink connector supports exactly-once if any piece of dat ### cdc(change data capture) If a sink connector supports writing row kinds(INSERT/UPDATE_BEFORE/UPDATE_AFTER/DELETE) based on primary key, we think it supports cdc(change data capture). + +### support multiple table write + +Supports write multiple tables in one SeaTunnel job, users can dynamically specify the table's identifier by [configuring placeholders](./sink-options-placeholders.md). + +Requires: +- Make sure the sink connector you are using has implemented `SupportMultiTableSink`、`SupportMultiTableSinkWriter`、`SupportMultiTableSinkAggregatedCommitter` Review Comment: It is strange to let users judge whether the corresponding interface is implemented here, because users are not developers. We can maintain the list of all sinks that support multiple tables through code. When a new connector that supports multiple tables is detected, it is mandatory to update the corresponding document, otherwise CI will report an error. -- 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]
