KAFKA-18449: Add share group state configs to reconfig-server.properties (#18440) (#18462)

Reviewers: Manikumar Reddy <manikumar.reddy@gmail.com>

Co-authored-by: Andrew Schofield <aschofield@confluent.io>
This commit is contained in:
ShivsundarR 2025-01-09 08:20:16 -05:00 committed by GitHub
parent f77616cba1
commit 5115c65f78
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View File

@ -82,9 +82,11 @@ num.partitions=1
num.recovery.threads.per.data.dir=1 num.recovery.threads.per.data.dir=1
############################# Internal Topic Settings ############################# ############################# Internal Topic Settings #############################
# The replication factor for the group metadata internal topics "__consumer_offsets" and "__transaction_state" # The replication factor for the group metadata internal topics "__consumer_offsets", "__share_group_state" and "__transaction_state"
# For anything other than development testing, a value greater than 1 is recommended to ensure availability such as 3. # For anything other than development testing, a value greater than 1 is recommended to ensure availability such as 3.
offsets.topic.replication.factor=1 offsets.topic.replication.factor=1
share.coordinator.state.topic.replication.factor=1
share.coordinator.state.topic.min.isr=1
transaction.state.log.replication.factor=1 transaction.state.log.replication.factor=1
transaction.state.log.min.isr=1 transaction.state.log.min.isr=1

View File

@ -82,15 +82,13 @@ num.partitions=1
num.recovery.threads.per.data.dir=1 num.recovery.threads.per.data.dir=1
############################# Internal Topic Settings ############################# ############################# Internal Topic Settings #############################
# The replication factor for the group metadata internal topics "__consumer_offsets" and "__transaction_state" # The replication factor for the group metadata internal topics "__consumer_offsets", "__share_group_state" and "__transaction_state"
# For anything other than development testing, a value greater than 1 is recommended to ensure availability such as 3. # For anything other than development testing, a value greater than 1 is recommended to ensure availability such as 3.
offsets.topic.replication.factor=1 offsets.topic.replication.factor=1
transaction.state.log.replication.factor=1
transaction.state.log.min.isr=1
# Share state topic settings
share.coordinator.state.topic.replication.factor=1 share.coordinator.state.topic.replication.factor=1
share.coordinator.state.topic.min.isr=1 share.coordinator.state.topic.min.isr=1
transaction.state.log.replication.factor=1
transaction.state.log.min.isr=1
############################# Log Flush Policy ############################# ############################# Log Flush Policy #############################