This is an automated email from the ASF dual-hosted git repository.

schofielaj pushed a commit to branch 4.0
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/4.0 by this push:
     new 5115c65f78d KAFKA-18449: Add share group state configs to 
reconfig-server.properties (#18440) (#18462)
5115c65f78d is described below

commit 5115c65f78d0ab27f69a669e6879d76e7e8084c0
Author: ShivsundarR <[email protected]>
AuthorDate: Thu Jan 9 08:20:16 2025 -0500

    KAFKA-18449: Add share group state configs to reconfig-server.properties 
(#18440) (#18462)
    
    Reviewers: Manikumar Reddy <[email protected]>
    
    Co-authored-by: Andrew Schofield <[email protected]>
---
 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 ae1dfb1606b..d4b1fe0bc4d 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 2d2c0bf8aff..311fefbdf86 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 #############################
 

Reply via email to