You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by ur...@apache.org on 2023/02/27 01:36:35 UTC

[pulsar-site] branch main updated: Docs sync done from apache/pulsar (#5d69321)

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

urfree pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pulsar-site.git


The following commit(s) were added to refs/heads/main by this push:
     new 6db837d067a Docs sync done from apache/pulsar (#5d69321)
6db837d067a is described below

commit 6db837d067a439dbe4af69ab9e77c868a34e516e
Author: github-actions[bot] <41...@users.noreply.github.com>
AuthorDate: Mon Feb 27 01:36:30 2023 +0000

    Docs sync done from apache/pulsar (#5d69321)
---
 .../next/config/reference-configuration-broker.md  | 51 +++++++++++++++++-----
 .../config/reference-configuration-standalone.md   | 51 +++++++++++++++++-----
 2 files changed, 80 insertions(+), 22 deletions(-)

diff --git a/static/reference/next/config/reference-configuration-broker.md b/static/reference/next/config/reference-configuration-broker.md
index cb1c8c26bb6..531967be3ea 100644
--- a/static/reference/next/config/reference-configuration-broker.md
+++ b/static/reference/next/config/reference-configuration-broker.md
@@ -803,17 +803,6 @@ Maximum number of brokers to transfer bundle load for each unloading cycle. The
 
 **Category**: Load Balancer
 
-### loadBalancerMemoryResourceWeight
-Memory Resource Usage Weight
-
-**Type**: `double`
-
-**Default**: `1.0`
-
-**Dynamic**: `true`
-
-**Category**: Load Balancer
-
 ### loadBalancerMsgRateDifferenceShedderThreshold
 Message-rate percentage threshold between highest and least loaded brokers for uniform load shedding. (eg: broker1 with 50K msgRate and broker2 with 30K msgRate will have 66% msgRate difference and load balancer can unload bundles from broker-1 to broker-2)
 
@@ -3522,6 +3511,35 @@ Whether to use streaming read dispatcher. Currently is in preview and can be cha
 ### strictBookieAffinityEnabled
 Enable or disable strict bookie affinity.
 
+**Type**: `boolean`
+
+**Default**: `false`
+
+**Dynamic**: `false`
+
+**Category**: Server
+
+### strictTopicNameEnabled
+# Enable strict topic name check. Which includes two parts as follows:
+# 1. Mark `-partition-` as a keyword.
+# E.g.
+    Create a non-partitioned topic.
+      No corresponding partitioned topic
+       - persistent://public/default/local-name (passed)
+       - persistent://public/default/local-name-partition-z (rejected by keyword)
+       - persistent://public/default/local-name-partition-0 (rejected by keyword)
+      Has corresponding partitioned topic, partitions=2 and topic partition name is persistent://public/default/local-name
+       - persistent://public/default/local-name-partition-0 (passed, Because it is the partition topic's sub-partition)
+       - persistent://public/default/local-name-partition-z (rejected by keyword)
+       - persistent://public/default/local-name-partition-4 (rejected, Because it exceeds the number of maximum partitions)
+    Create a partitioned topic(topic metadata)
+       - persistent://public/default/local-name (passed)
+       - persistent://public/default/local-name-partition-z (rejected by keyword)
+       - persistent://public/default/local-name-partition-0 (rejected by keyword)
+# 2. Allowed alphanumeric (a-zA-Z_0-9) and these special chars -=:. for topic name.
+# NOTE: This flag will be removed in some major releases in the future.
+
+
 **Type**: `boolean`
 
 **Default**: `false`
@@ -5202,6 +5220,17 @@ Usage threshold to determine a broker as under-loaded (only used by SimpleLoadMa
 
 **Category**: Load Balancer
 
+### loadBalancerMemoryResourceWeight
+Memory Resource Usage Weight. Deprecated: Memory is no longer used as a load balancing item.
+
+**Type**: `double`
+
+**Default**: `1.0`
+
+**Dynamic**: `true`
+
+**Category**: Load Balancer
+
 ### loadBalancerPlacementStrategy
 load placement strategy[weightedRandomSelection/leastLoadedServer] (only used by SimpleLoadManagerImpl)
 
diff --git a/static/reference/next/config/reference-configuration-standalone.md b/static/reference/next/config/reference-configuration-standalone.md
index cb1c8c26bb6..531967be3ea 100644
--- a/static/reference/next/config/reference-configuration-standalone.md
+++ b/static/reference/next/config/reference-configuration-standalone.md
@@ -803,17 +803,6 @@ Maximum number of brokers to transfer bundle load for each unloading cycle. The
 
 **Category**: Load Balancer
 
-### loadBalancerMemoryResourceWeight
-Memory Resource Usage Weight
-
-**Type**: `double`
-
-**Default**: `1.0`
-
-**Dynamic**: `true`
-
-**Category**: Load Balancer
-
 ### loadBalancerMsgRateDifferenceShedderThreshold
 Message-rate percentage threshold between highest and least loaded brokers for uniform load shedding. (eg: broker1 with 50K msgRate and broker2 with 30K msgRate will have 66% msgRate difference and load balancer can unload bundles from broker-1 to broker-2)
 
@@ -3522,6 +3511,35 @@ Whether to use streaming read dispatcher. Currently is in preview and can be cha
 ### strictBookieAffinityEnabled
 Enable or disable strict bookie affinity.
 
+**Type**: `boolean`
+
+**Default**: `false`
+
+**Dynamic**: `false`
+
+**Category**: Server
+
+### strictTopicNameEnabled
+# Enable strict topic name check. Which includes two parts as follows:
+# 1. Mark `-partition-` as a keyword.
+# E.g.
+    Create a non-partitioned topic.
+      No corresponding partitioned topic
+       - persistent://public/default/local-name (passed)
+       - persistent://public/default/local-name-partition-z (rejected by keyword)
+       - persistent://public/default/local-name-partition-0 (rejected by keyword)
+      Has corresponding partitioned topic, partitions=2 and topic partition name is persistent://public/default/local-name
+       - persistent://public/default/local-name-partition-0 (passed, Because it is the partition topic's sub-partition)
+       - persistent://public/default/local-name-partition-z (rejected by keyword)
+       - persistent://public/default/local-name-partition-4 (rejected, Because it exceeds the number of maximum partitions)
+    Create a partitioned topic(topic metadata)
+       - persistent://public/default/local-name (passed)
+       - persistent://public/default/local-name-partition-z (rejected by keyword)
+       - persistent://public/default/local-name-partition-0 (rejected by keyword)
+# 2. Allowed alphanumeric (a-zA-Z_0-9) and these special chars -=:. for topic name.
+# NOTE: This flag will be removed in some major releases in the future.
+
+
 **Type**: `boolean`
 
 **Default**: `false`
@@ -5202,6 +5220,17 @@ Usage threshold to determine a broker as under-loaded (only used by SimpleLoadMa
 
 **Category**: Load Balancer
 
+### loadBalancerMemoryResourceWeight
+Memory Resource Usage Weight. Deprecated: Memory is no longer used as a load balancing item.
+
+**Type**: `double`
+
+**Default**: `1.0`
+
+**Dynamic**: `true`
+
+**Category**: Load Balancer
+
 ### loadBalancerPlacementStrategy
 load placement strategy[weightedRandomSelection/leastLoadedServer] (only used by SimpleLoadManagerImpl)