Skip to content

Commit 7436159

Browse files
KAFKA-18449: Add share group state configs to reconfig-server.properties (apache#18440)
Reviewers: Manikumar Reddy <[email protected]>
1 parent 0721d21 commit 7436159

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

config/kraft/reconfig-server.properties

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,11 @@ num.partitions=1
8282
num.recovery.threads.per.data.dir=1
8383

8484
############################# Internal Topic Settings #############################
85-
# The replication factor for the group metadata internal topics "__consumer_offsets" and "__transaction_state"
85+
# The replication factor for the group metadata internal topics "__consumer_offsets", "__share_group_state" and "__transaction_state"
8686
# For anything other than development testing, a value greater than 1 is recommended to ensure availability such as 3.
8787
offsets.topic.replication.factor=1
88+
share.coordinator.state.topic.replication.factor=1
89+
share.coordinator.state.topic.min.isr=1
8890
transaction.state.log.replication.factor=1
8991
transaction.state.log.min.isr=1
9092

config/kraft/server.properties

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,15 +82,13 @@ num.partitions=1
8282
num.recovery.threads.per.data.dir=1
8383

8484
############################# Internal Topic Settings #############################
85-
# The replication factor for the group metadata internal topics "__consumer_offsets" and "__transaction_state"
85+
# The replication factor for the group metadata internal topics "__consumer_offsets", "__share_group_state" and "__transaction_state"
8686
# For anything other than development testing, a value greater than 1 is recommended to ensure availability such as 3.
8787
offsets.topic.replication.factor=1
88-
transaction.state.log.replication.factor=1
89-
transaction.state.log.min.isr=1
90-
91-
# Share state topic settings
9288
share.coordinator.state.topic.replication.factor=1
9389
share.coordinator.state.topic.min.isr=1
90+
transaction.state.log.replication.factor=1
91+
transaction.state.log.min.isr=1
9492

9593
############################# Log Flush Policy #############################
9694

0 commit comments

Comments
 (0)