From 7436159a2723a14a51b863583cd0902bc4cf1f0f Mon Sep 17 00:00:00 2001 From: Andrew Schofield Date: Wed, 8 Jan 2025 13:49:46 +0000 Subject: [PATCH] KAFKA-18449: Add share group state configs to reconfig-server.properties (#18440) Reviewers: Manikumar Reddy --- config/kraft/reconfig-server.properties | 4 +++- config/kraft/server.properties | 8 +++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/config/kraft/reconfig-server.properties b/config/kraft/reconfig-server.properties index ae1dfb1606b96..d4b1fe0bc4dbd 100644 --- a/config/kraft/reconfig-server.properties +++ b/config/kraft/reconfig-server.properties @@ -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 diff --git a/config/kraft/server.properties b/config/kraft/server.properties index 2d2c0bf8aff3a..311fefbdf86ed 100644 --- a/config/kraft/server.properties +++ b/config/kraft/server.properties @@ -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 #############################