mirror of https://github.com/apache/kafka.git
Reviewers: Manikumar Reddy <manikumar.reddy@gmail.com> Co-authored-by: Andrew Schofield <aschofield@confluent.io>
This commit is contained in:
parent
f77616cba1
commit
5115c65f78
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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 #############################
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue