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

changefeed: add constraint to Replication Factor and Partition Number #16601

Merged
merged 2 commits into from
Feb 26, 2024
Merged
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions tidb-cloud/changefeed-sink-to-apache-kafka.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ For example, if your Kafka cluster is in Confluent Cloud, you can see [Resources

8. In the **Topic Configuration** area, configure the following numbers. The changefeed will automatically create the Kafka topics according to the numbers.

- **Replication Factor**: controls how many Kafka servers each Kafka message is replicated to.
- **Partition Number**: controls how many partitions exist in a topic.
- **Replication Factor**: controls how many Kafka servers each Kafka message is replicated to; there is a constraint on the factor, related to the downstream kafka's configuration, should be in range [min.insync.replicas, broker number]
- **Partition Number**: controls how many partitions exist in a topic; there is a constraint on the number, related to broker number of kafka, should be in range [1, 10*broker number]
grovecai marked this conversation as resolved.
Show resolved Hide resolved

9. Click **Next**.

Expand Down
Loading