This is an automated email from the ASF dual-hosted git repository. lhotari pushed a commit to branch branch-4.1 in repository https://gitbox.apache.org/repos/asf/pulsar.git
commit 97f6fc715829131f96f92f85dbffae254999dd52 Author: Yike Xiao <[email protected]> AuthorDate: Fri Nov 7 17:26:27 2025 +0800 [cleanup][broker] Remove unused configuration maxMessageSizeCheckIntervalInSeconds (#24958) (cherry picked from commit d9a36b22ee2cc1a9a56510b303d96f64ec42309a) --- conf/broker.conf | 4 ---- conf/standalone.conf | 4 ---- deployment/terraform-ansible/templates/broker.conf | 4 ---- 3 files changed, 12 deletions(-) diff --git a/conf/broker.conf b/conf/broker.conf index e6d7702d762..f18cd553084 100644 --- a/conf/broker.conf +++ b/conf/broker.conf @@ -725,10 +725,6 @@ maxMessagePublishBufferSizeInMB= # Use 0 or negative number to disable the check retentionCheckIntervalInSeconds=120 -# Control the frequency of checking the max message size in the topic policy. -# The default interval is 60 seconds. -maxMessageSizeCheckIntervalInSeconds=60 - # Max number of partitions per partitioned topic # Use 0 or negative number to disable the check maxNumPartitionsPerPartitionedTopic=0 diff --git a/conf/standalone.conf b/conf/standalone.conf index 708d4905b8a..5aa2b7cb73d 100644 --- a/conf/standalone.conf +++ b/conf/standalone.conf @@ -145,10 +145,6 @@ maxPendingPublishRequestsPerConnection=1000 # How frequently to proactively check and purge expired messages messageExpiryCheckIntervalInMinutes=5 -# Check between intervals to see if max message size in topic policies has been updated. -# Default is 60s -maxMessageSizeCheckIntervalInSeconds=60 - # How long to delay rewinding cursor and dispatching messages when active consumer is changed activeConsumerFailoverDelayTimeMillis=1000 diff --git a/deployment/terraform-ansible/templates/broker.conf b/deployment/terraform-ansible/templates/broker.conf index 7b9c5a84cf2..1ccfbacecb0 100644 --- a/deployment/terraform-ansible/templates/broker.conf +++ b/deployment/terraform-ansible/templates/broker.conf @@ -414,10 +414,6 @@ maxMessagePublishBufferSizeInMB= # Use 0 or negative number to disable the check retentionCheckIntervalInSeconds=120 -# Check between intervals to see if max message size in topic policies has been updated. -# Default is 60s -maxMessageSizeCheckIntervalInSeconds=60 - # Max number of partitions per partitioned topic # Use 0 or negative number to disable the check maxNumPartitionsPerPartitionedTopic=0
