Skip to content

KAFKA-16894: share.version becomes stable feature for preview #19831

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 2, 2025
Merged
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 @@ -24,12 +24,12 @@ public enum ShareVersion implements FeatureVersion {
SV_0(0, MetadataVersion.MINIMUM_VERSION, Map.of()),

// Version 1 enables share groups (KIP-932).
// This is a preview in 4.1, and production-ready in 4.2.
// This is a preview in 4.1, and expected to be production-ready in 4.2.
SV_1(1, MetadataVersion.IBP_4_2_IV0, Map.of());

public static final String FEATURE_NAME = "share.version";

public static final ShareVersion LATEST_PRODUCTION = SV_0;
public static final ShareVersion LATEST_PRODUCTION = SV_1;

private final short featureLevel;
private final MetadataVersion bootstrapMetadataVersion;
Expand Down