Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -74,16 +74,16 @@ public class QuotaConfig {

public static final String LEADER_REPLICATION_THROTTLED_RATE_CONFIG = "leader.replication.throttled.rate";
public static final String LEADER_REPLICATION_THROTTLED_RATE_DOC = "A long representing the upper bound (bytes/sec) on replication traffic for leaders enumerated in the " +
String.format("property %s (for each topic). This property can be only set dynamically. It is suggested that the ", LEADER_REPLICATION_THROTTLED_REPLICAS_CONFIG) +
String.format("property %s (for each topic). This property can be only set dynamically and static configurations in server.properties are ignored. It is suggested that the ", LEADER_REPLICATION_THROTTLED_REPLICAS_CONFIG) +
"limit be kept above 1MB/s for accurate behaviour.";

public static final String FOLLOWER_REPLICATION_THROTTLED_RATE_CONFIG = "follower.replication.throttled.rate";
public static final String FOLLOWER_REPLICATION_THROTTLED_RATE_DOC = "A long representing the upper bound (bytes/sec) on replication traffic for followers enumerated in the " +
String.format("property %s (for each topic). This property can be only set dynamically. It is suggested that the ", FOLLOWER_REPLICATION_THROTTLED_REPLICAS_CONFIG) +
String.format("property %s (for each topic). This property can be only set dynamically and static configurations in server.properties are ignored. It is suggested that the ", FOLLOWER_REPLICATION_THROTTLED_REPLICAS_CONFIG) +
"limit be kept above 1MB/s for accurate behaviour.";
public static final String REPLICA_ALTER_LOG_DIRS_IO_MAX_BYTES_PER_SECOND_CONFIG = "replica.alter.log.dirs.io.max.bytes.per.second";
public static final String REPLICA_ALTER_LOG_DIRS_IO_MAX_BYTES_PER_SECOND_DOC = "A long representing the upper bound (bytes/sec) on disk IO used for moving replica between log directories on the same broker. " +
"This property can be only set dynamically. It is suggested that the limit be kept above 1MB/s for accurate behaviour.";
"This property can be only set dynamically and static configurations in server.properties are ignored. It is suggested that the limit be kept above 1MB/s for accurate behaviour.";
public static final long QUOTA_BYTES_PER_SECOND_DEFAULT = Long.MAX_VALUE;

public static final String PRODUCER_BYTE_RATE_OVERRIDE_CONFIG = "producer_byte_rate";
Expand Down