DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
| Name | Description | Type | Default | Valid Values | Importance | Update Mode |
|---|---|---|---|---|---|---|
| leader.replication.throttled.rate | A long representing the upper bound (bytes/sec) on replication traffic for leaders enumerated in the property "leader.replication.throttled.replicas" (for each topic). It is suggested that the limit be kept above 1MB/s for accurate behaviour. | long | 9223372036854775807 | [0,...] | low | per-broker |
| follower.replication.throttled.rate | A long representing the upper bound (bytes/sec) on replication traffic for followers enumerated in the property "follower.replication.throttled.replicas" (for each topic). It is suggested that the limit be kept above 1MB/s for accurate behaviour. | long | 9223372036854775807 | [0,...] | low | per-broker |
The following metrics will be added to ReplicationQuotaManager:
| Metric Name | Type | Group | Tags | Description | JMX Bean |
|---|---|---|---|---|---|
| LeaderReplicationThrottledPartitions | Gauge | ReplicationQuotaManager | - | The number of partitions on the broker that are being throttled on the leader side. | kafka.server:type=ReplicationQuotaManager,name=LeaderReplicationThrottledPartitions |
| FollowerReplicationThrottledPartitions | Gauge | ReplicationQuotaManager | - | The number of partitions on the broker that are being throttled on the follower side. | kafka.server:type=ReplicationQuotaManager,name=FollowerReplicationThrottledPartitions |
Proposed Changes
Move the leader.replication.throttled.rate and follower.replication.throttled.rate configuration values from DynamicConfig to KafkaConfig.
...