This is an automated email from the ASF dual-hosted git repository.
mmerli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pulsar.git
The following commit(s) were added to refs/heads/master by this push:
new dab6695 Enable dispatch-throttling for non backlog consumers by
default. (#1654)
dab6695 is described below
commit dab66951f36f1106b3dbfb4cb648fd2b09c5ff00
Author: Sanjeev Kulkarni <[email protected]>
AuthorDate: Thu Apr 26 16:45:14 2018 -0700
Enable dispatch-throttling for non backlog consumers by default. (#1654)
---
conf/broker.conf | 6 +++---
conf/standalone.conf | 6 +++---
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/conf/broker.conf b/conf/broker.conf
index d38abf7..2b0365c 100644
--- a/conf/broker.conf
+++ b/conf/broker.conf
@@ -140,9 +140,9 @@ dispatchThrottlingRatePerTopicInMsg=0
# default message-byte dispatch-throttling
dispatchThrottlingRatePerTopicInByte=0
-# Default dispatch-throttling is disabled for consumers which already
caught-up with published messages and
-# don't have backlog. This enables dispatch-throttling for non-backlog
consumers as well.
-dispatchThrottlingOnNonBacklogConsumerEnabled=false
+# By default we enable dispatch-throttling for both caught up consumers as
well as consumers who have
+# backlog.
+dispatchThrottlingOnNonBacklogConsumerEnabled=true
# Max number of concurrent lookup request broker allows to throttle heavy
incoming lookup traffic
maxConcurrentLookupRequest=10000
diff --git a/conf/standalone.conf b/conf/standalone.conf
index b593f00..6966287 100644
--- a/conf/standalone.conf
+++ b/conf/standalone.conf
@@ -129,9 +129,9 @@ dispatchThrottlingRatePerTopicInMsg=0
# default message-byte dispatch-throttling
dispatchThrottlingRatePerTopicInByte=0
-# Default dispatch-throttling is disabled for consumers which already
caught-up with published messages and
-# don't have backlog. This enables dispatch-throttling for non-backlog
consumers as well.
-dispatchThrottlingOnNonBacklogConsumerEnabled=false
+# By default we enable dispatch-throttling for both caught up consumers as
well as consumers who have
+# backlog.
+dispatchThrottlingOnNonBacklogConsumerEnabled=true
# Max number of concurrent lookup request broker allows to throttle heavy
incoming lookup traffic
maxConcurrentLookupRequest=10000
--
To stop receiving notification emails like this one, please contact
[email protected].