Skip to content

Commit

Permalink
KAFKA-18449: Add share group state configs to reconfig-server.propert…
Browse files Browse the repository at this point in the history
…ies (#18440)

Reviewers: Manikumar Reddy <[email protected]>
  • Loading branch information
AndrewJSchofield authored Jan 8, 2025
1 parent 0721d21 commit 7436159
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 3 additions & 1 deletion config/kraft/reconfig-server.properties
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,11 @@ num.partitions=1
num.recovery.threads.per.data.dir=1

############################# 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.
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.min.isr=1

Expand Down
8 changes: 3 additions & 5 deletions config/kraft/server.properties
Original file line number Diff line number Diff line change
Expand Up @@ -82,15 +82,13 @@ num.partitions=1
num.recovery.threads.per.data.dir=1

############################# 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.
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.min.isr=1
transaction.state.log.replication.factor=1
transaction.state.log.min.isr=1

############################# Log Flush Policy #############################

Expand Down

0 comments on commit 7436159

Please sign in to comment.