Skip to content

Commit

Permalink
[improve][broker] Add broker interceptor conf (#20719)
Browse files Browse the repository at this point in the history
  • Loading branch information
crossoverJie authored Jul 21, 2023
1 parent ac94296 commit d5f97bf
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions conf/broker.conf
Original file line number Diff line number Diff line change
Expand Up @@ -1823,3 +1823,12 @@ managedLedgerCacheEvictionFrequency=0
# Number of worker threads to serve non-persistent topic
# Deprecated - use topicOrderedExecutorThreadNum instead.
numWorkerThreadsForNonPersistentTopic=

# The directory to locate broker interceptors
brokerInterceptorsDirectory=./interceptors

# List of broker interceptor to load, which is a list of broker interceptor names
brokerInterceptors=

# Enable or disable the broker interceptor, which is only used for testing for now
disableBrokerInterceptors=true
9 changes: 9 additions & 0 deletions conf/standalone.conf
Original file line number Diff line number Diff line change
Expand Up @@ -1269,3 +1269,12 @@ delayedDeliveryMaxIndexesPerBucketSnapshotSegment=5000
# after reaching the max buckets limitation, the adjacent buckets will be merged.
# (disable with value -1)
delayedDeliveryMaxNumBuckets=-1

# The directory to locate broker interceptors
brokerInterceptorsDirectory=./interceptors

# List of broker interceptor to load, which is a list of broker interceptor names
brokerInterceptors=

# Enable or disable the broker interceptor, which is only used for testing for now
disableBrokerInterceptors=true

0 comments on commit d5f97bf

Please sign in to comment.