Skip to content

Commit

Permalink
fix brokerPublisherThrottlingTickTimeMillis in broker.conf (#6877)
Browse files Browse the repository at this point in the history
Master Issue: #6876

Motivation
the brokerPublisherThrPottlingTickTimeMillis config spelling mistake

Modifications
broker.conf

  # Tick time to schedule task that checks broker publish rate limiting across all topics
# Reducing to lower value can give more accuracy while throttling publish but
# it uses more CPU to perform frequent check. (Disable publish throttling with value 0)
brokerPublisherThrottlingTickTimeMillis=50

* fix brokerPublisherThrottlingTickTimeMillis in broker.conf

* fix brokerPublisherThrottlingTickTimeMillis in standalone.conf

Co-authored-by: dezhiliu <dezhiliu@tencent.com>(cherry picked from commit 65dc9d9)
  • Loading branch information
liudezhi2098 authored and jiazhai committed May 12, 2020
1 parent f428d84 commit aed2c17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion conf/broker.conf
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ topicPublisherThrottlingTickTimeMillis=10
# Tick time to schedule task that checks broker publish rate limiting across all topics
# Reducing to lower value can give more accuracy while throttling publish but
# it uses more CPU to perform frequent check. (Disable publish throttling with value 0)
brokerPublisherThrPottlingTickTimeMillis=50
brokerPublisherThrottlingTickTimeMillis=50

# Max Rate(in 1 seconds) of Message allowed to publish for a broker if broker publish rate limiting enabled
# (Disable message rate limit with value 0)
Expand Down
2 changes: 1 addition & 1 deletion conf/standalone.conf
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ topicPublisherThrottlingTickTimeMillis=2
# Tick time to schedule task that checks broker publish rate limiting across all topics
# Reducing to lower value can give more accuracy while throttling publish but
# it uses more CPU to perform frequent check. (Disable publish throttling with value 0)
brokerPublisherThrPottlingTickTimeMillis=50
brokerPublisherThrottlingTickTimeMillis=50

# Max Rate(in 1 seconds) of Message allowed to publish for a broker if broker publish rate limiting enabled
# (Disable message rate limit with value 0)
Expand Down

0 comments on commit aed2c17

Please sign in to comment.