diff --git a/conf/broker.conf b/conf/broker.conf index 741f456ef4ce9..1fc578a287f6f 100644 --- a/conf/broker.conf +++ b/conf/broker.conf @@ -158,7 +158,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 18b0156564996..2e0273a2f3ea0 100644 --- a/conf/standalone.conf +++ b/conf/standalone.conf @@ -102,7 +102,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