diff --git a/docs/design.html b/docs/design.html index a6dee397f57..8b7bf9251cf 100644 --- a/docs/design.html +++ b/docs/design.html @@ -621,10 +621,6 @@
- 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. -
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 9c29e072597..e5b2fb8e946 100644 --- a/docs/ops.html +++ b/docs/ops.html @@ -518,11 +518,6 @@
> 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
- - 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. -
quota.producer.default=10485760
- quota.consumer.default=10485760
- 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.