From 13637552251944aa68da822d6a9d7c89d15aabb4 Mon Sep 17 00:00:00 2001 From: Anonymitaet Date: Mon, 23 Sep 2019 11:04:49 +0800 Subject: [PATCH 1/2] update --- site2/docs/reference-configuration.md | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/site2/docs/reference-configuration.md b/site2/docs/reference-configuration.md index 5261bae0c2651..a495553d50e2d 100644 --- a/site2/docs/reference-configuration.md +++ b/site2/docs/reference-configuration.md @@ -13,15 +13,16 @@ sidebar_label: Pulsar configuration Pulsar configuration can be managed either via a series of configuration files contained in the [`conf`](https://github.com/apache/pulsar/tree/master/conf) directory of a Pulsar [installation](getting-started-standalone.md) -* [BookKeeper](#bookkeeper) -* [Broker](#broker) -* [Client](#client) -* [Service discovery](#service-discovery) -* [Log4j](#log4j) -* [Log4j shell](#log4j-shell) -* [Standalone](#standalone) -* [WebSocket](#websocket) -* [ZooKeeper](#zookeeper) +- [BookKeeper](#bookkeeper) +- [Broker](#broker) +- [Client](#client) +- [Service discovery](#service-discovery) +- [Log4j](#log4j) +- [Log4j shell](#log4j-shell) +- [Standalone](#standalone) +- [WebSocket](#websocket) +- [Pulsar proxy](#pulsar-proxy) +- [ZooKeeper](#zookeeper) ## BookKeeper @@ -126,9 +127,9 @@ Pulsar brokers are responsible for handling incoming messages from producers, di |backlogQuotaCheckEnabled| Enable backlog quota check. Enforces action on topic when the quota is reached |true| |backlogQuotaCheckIntervalInSeconds| How often to check for topics that have reached the quota |60| |backlogQuotaDefaultLimitGB| Default per-topic backlog quota limit |10| -|allowAutoTopicCreation| Enable topic auto creation if new producer or consumer connected |true| -|allowAutoTopicCreationType| The type of topic that is allowed to be automatically created.(partitioned/non-partitioned) |non-partitioned| -|defaultNumPartitions| The number of partitioned topics that is allowed to be automatically created if allowAutoTopicCreationType is partitioned |1| +|allowAutoTopicCreation| Enable topic auto creation if a new producer or consumer connected |true| +|allowAutoTopicCreationType| The topic type (partitioned or non-partitioned) that is allowed to be automatically created. |non-partitioned| +|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| |messageExpiryCheckIntervalInMinutes| How frequently to proactively check and purge expired messages |5| From 497dd1fab47471b6d3831009ca5b52684d37236c Mon Sep 17 00:00:00 2001 From: Anonymitaet <50226895+Anonymitaet@users.noreply.github.com> Date: Mon, 23 Sep 2019 11:48:33 +0800 Subject: [PATCH 2/2] Update --- site2/docs/reference-configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site2/docs/reference-configuration.md b/site2/docs/reference-configuration.md index a495553d50e2d..6dfe87eeaeb45 100644 --- a/site2/docs/reference-configuration.md +++ b/site2/docs/reference-configuration.md @@ -128,7 +128,7 @@ Pulsar brokers are responsible for handling incoming messages from producers, di |backlogQuotaCheckIntervalInSeconds| How often to check for topics that have reached the quota |60| |backlogQuotaDefaultLimitGB| Default per-topic backlog quota limit |10| |allowAutoTopicCreation| Enable topic auto creation if a new producer or consumer connected |true| -|allowAutoTopicCreationType| The topic type (partitioned or non-partitioned) that is allowed to be automatically created. |non-partitioned| +|allowAutoTopicCreationType| The topic type (partitioned or non-partitioned) that is allowed to be automatically created. |Partitioned| |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|