You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by da...@apache.org on 2021/11/04 09:09:01 UTC

[kafka] branch 3.1 updated: KAFKA-13430: Remove broker-wide quota properties from the documentation (#11463)

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

dajac pushed a commit to branch 3.1
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/3.1 by this push:
     new 9a5f4b2  KAFKA-13430: Remove broker-wide quota properties from the documentation (#11463)
9a5f4b2 is described below

commit 9a5f4b207b67273c76abf236cfe63d8fb5766008
Author: Lee Dongjin <do...@apache.org>
AuthorDate: Thu Nov 4 18:04:02 2021 +0900

    KAFKA-13430: Remove broker-wide quota properties from the documentation (#11463)
    
    Reviewers: David Jacot <dj...@confluent.io>
---
 docs/design.html | 4 ----
 docs/ops.html    | 5 -----
 2 files changed, 9 deletions(-)

diff --git a/docs/design.html b/docs/design.html
index a6dee39..8b7bf92 100644
--- a/docs/design.html
+++ b/docs/design.html
@@ -621,10 +621,6 @@
             <li>/config/clients/&lt;client-id&gt;</li>
             <li>/config/clients/&lt;default&gt;</li>
         </ol>
-    <p>
-        Broker properties (quota.producer.default, quota.consumer.default) can also be used to set defaults of network bandwidth quotas for client-id groups. These properties are being deprecated and will be removed in a later release.
-        Default quotas for client-id can be set in Zookeeper similar to the other quota overrides and defaults.
-    </p>
     <h4 class="anchor-heading"><a id="design_quotasbandwidth" class="anchor-link"></a><a href="#design_quotasbandwidth">Network Bandwidth Quotas</a></h4>
     <p>
         Network bandwidth quotas are defined as the byte rate threshold for each group of clients sharing a quota.
diff --git a/docs/ops.html b/docs/ops.html
index c0b45a1..b5d3bd5 100644
--- a/docs/ops.html
+++ b/docs/ops.html
@@ -518,11 +518,6 @@
   <pre class="line-numbers"><code class="language-bash">  > bin/kafka-configs.sh  --bootstrap-server localhost:9092 --describe --entity-type users --entity-type clients
   Configs for user-principal 'user1', default client-id are producer_byte_rate=1024,consumer_byte_rate=2048,request_percentage=200
   Configs for user-principal 'user1', client-id 'clientA' are producer_byte_rate=1024,consumer_byte_rate=2048,request_percentage=200</code></pre>
-  <p>
-  It is possible to set default quotas that apply to all client-ids by setting these configs on the brokers. These properties are applied only if quota overrides or defaults are not configured in Zookeeper. By default, each client-id receives an unlimited quota. The following sets the default quota per producer and consumer client-id to 10MB/sec.
-  <pre class="line-numbers"><code class="language-text">    quota.producer.default=10485760
-    quota.consumer.default=10485760</code></pre>
-  Note that these properties are being deprecated and may be removed in a future release. Defaults configured using kafka-configs.sh take precedence over these properties.
 
   <h3 class="anchor-heading"><a id="datacenters" class="anchor-link"></a><a href="#datacenters">6.2 Datacenters</a></h3>