Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Add note about config resource type

...

A new configuration resource type is added for cluster mirrors, which is stored in the cluster metadata internal log:. Both DescribeConfigs and IncrementalAlterConfigs will be bumped to new versions so that clients can check ApiVersionsResponse to determine whether the broker supports mirror configuration management, rather than having to send a request and interpret the error.

Code Block
languagejava
public enum Type {
    // ... existing types ... 
    MIRROR((byte) 64, "mirror"); // New type
}

...