You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by pe...@apache.org on 2020/05/27 05:40:24 UTC

[pulsar] branch master updated: Update the broker configuration file in the Reference > Pulsar configuration for the issue apache/pulsar#6087 (#6990)

This is an automated email from the ASF dual-hosted git repository.

penghui pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new 2423c9f  Update the broker configuration file in the Reference > Pulsar configuration for the issue apache/pulsar#6087 (#6990)
2423c9f is described below

commit 2423c9f307f26302503da0320fcaec754547bc5e
Author: HuanliMeng <48...@users.noreply.github.com>
AuthorDate: Wed May 27 13:40:14 2020 +0800

    Update the broker configuration file in the Reference > Pulsar configuration for the issue apache/pulsar#6087 (#6990)
---
 site2/docs/reference-configuration.md | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/site2/docs/reference-configuration.md b/site2/docs/reference-configuration.md
index b1e893f..893ea0c 100644
--- a/site2/docs/reference-configuration.md
+++ b/site2/docs/reference-configuration.md
@@ -136,6 +136,8 @@ Pulsar brokers are responsible for handling incoming messages from producers, di
 |defaultNumPartitions| The number of partitioned topics that is allowed to be automatically created if `allowAutoTopicCreationType` is partitioned |1|
 |brokerDeleteInactiveTopicsEnabled| Enable the deletion of inactive topics  |true|
 |brokerDeleteInactiveTopicsFrequencySeconds|  How often to check for inactive topics  |60|
+| brokerDeleteInactiveTopicsMode | Set the mode to delete inactive topics. <li> `delete_when_no_subscriptions`: delete the topic which has no subscriptions or active producers. <li> `delete_when_subscriptions_caught_up`: delete the topic whose subscriptions have no backlogs and which has no active producers or consumers. | `delete_when_no_subscriptions` |
+| brokerDeleteInactiveTopicsMaxInactiveDurationSeconds | Set the maximum duration for inactive topics. If it is not specified, the `brokerDeleteInactiveTopicsFrequencySeconds` parameter is adopted. | N/A |
 |messageExpiryCheckIntervalInMinutes| How frequently to proactively check and purge expired messages  |5|
 |brokerServiceCompactionMonitorIntervalInSeconds| Interval between checks to see if topics with compaction policies need to be compacted  |60|
 |activeConsumerFailoverDelayTimeMillis| How long to delay rewinding cursor and dispatching messages when active consumer is changed.  |1000|