diff --git a/conf/broker.conf b/conf/broker.conf index eaabbd6955abc..d5198d356db5b 100644 --- a/conf/broker.conf +++ b/conf/broker.conf @@ -155,7 +155,8 @@ allowAutoSubscriptionCreation=true # The number of partitioned topics that is allowed to be automatically created if allowAutoTopicCreationType is partitioned. defaultNumPartitions=1 -# Enable the deletion of inactive topics +# Enable the deletion of inactive topics. This parameter need to cooperate with the allowAutoTopicCreation parameter. +# If brokerDeleteInactiveTopicsEnabled is set to true, we should ensure that allowAutoTopicCreation is also set to true. brokerDeleteInactiveTopicsEnabled=true # How often to check for inactive topics diff --git a/conf/standalone.conf b/conf/standalone.conf index a21a1a8f6b973..e1eb3975c47f6 100644 --- a/conf/standalone.conf +++ b/conf/standalone.conf @@ -99,7 +99,8 @@ backlogQuotaDefaultLimitSecond=-1 # Default ttl for namespaces if ttl is not already configured at namespace policies. (disable default-ttl with value 0) ttlDurationDefaultInSeconds=0 -# Enable the deletion of inactive topics +# Enable the deletion of inactive topics. This parameter need to cooperate with the allowAutoTopicCreation parameter. +# If brokerDeleteInactiveTopicsEnabled is set to true, we should ensure that allowAutoTopicCreation is also set to true. brokerDeleteInactiveTopicsEnabled=true # How often to check for inactive topics diff --git a/deployment/terraform-ansible/templates/broker.conf b/deployment/terraform-ansible/templates/broker.conf index 2b655f3c16747..9936105c21095 100644 --- a/deployment/terraform-ansible/templates/broker.conf +++ b/deployment/terraform-ansible/templates/broker.conf @@ -119,7 +119,8 @@ allowAutoSubscriptionCreation=true # The number of partitioned topics that is allowed to be automatically created if allowAutoTopicCreationType is partitioned. defaultNumPartitions=1 -# Enable the deletion of inactive topics +# Enable the deletion of inactive topics. This parameter need to cooperate with the allowAutoTopicCreation parameter. +# If brokerDeleteInactiveTopicsEnabled is set to true, we should ensure that allowAutoTopicCreation is also set to true. brokerDeleteInactiveTopicsEnabled=true # How often to check for inactive topics