This is an automated email from the ASF dual-hosted git repository. dajac pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/kafka-site.git
The following commit(s) were added to refs/heads/asf-site by this push: new c3d0163 KAFKA-13430: Remove broker-wide quota properties from the documentation (#380) c3d0163 is described below commit c3d01632a20f354951e4817de6e65618246052d8 Author: Lee Dongjin <dong...@apache.org> AuthorDate: Thu Nov 4 18:06:43 2021 +0900 KAFKA-13430: Remove broker-wide quota properties from the documentation (#380) Reviewers: David Jacot <dja...@confluent.io> --- 30/design.html | 4 ---- 30/ops.html | 5 ----- 2 files changed, 9 deletions(-) diff --git a/30/design.html b/30/design.html index a6dee39..8b7bf92 100644 --- a/30/design.html +++ b/30/design.html @@ -621,10 +621,6 @@ <li>/config/clients/<client-id></li> <li>/config/clients/<default></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/30/ops.html b/30/ops.html index 0f7713b..3eb7df7 100644 --- a/30/ops.html +++ b/30/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>