Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs about control topic reuse #197

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ contain the name of the table. Enabling `iceberg.tables.upsert-mode-enabled` wil
preceded by an equality delete. Both CDC and upsert mode require an Iceberg V2 table with identity fields
defined.

It is safe to reuse the same `iceberg.control.topic` for multiple connectors as this is expected to be a
relatively low traffic topic. Connectors can distinguish between which messages are relevant to them or not by looking
at the `iceberg.control.group-id` that is encoded inside each message for this purpose. Naturally, this does mean that
`iceberg.control.group-id` cannot be shared between multiple connectors.

## Kafka configuration

By default the connector will attempt to use Kafka client config from the worker properties for connecting to
Expand Down
Loading