Skip to content

Enable feature flags by default: EnableTopicAutopartitioningForCDC, EnableTopicAutopartitioningForReplication, EnableTopicTransfer #21521

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 4 commits into from
Jul 23, 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
6 changes: 3 additions & 3 deletions ydb/core/protos/feature_flags.proto
Original file line number Diff line number Diff line change
Expand Up @@ -170,10 +170,10 @@ message TFeatureFlags {
optional bool EnableParameterizedDecimal = 145 [default = true];
optional bool EnableImmediateWritingOnBulkUpsert = 146 [default = true];
optional bool EnableInsertWriteIdSpecialColumnCompatibility = 147 [default = false];
optional bool EnableTopicAutopartitioningForCDC = 148 [default = false];
optional bool EnableTopicAutopartitioningForCDC = 148 [default = true];
optional bool EnableWritePortionsOnInsert = 149 [default = false];
optional bool EnableFollowerStats = 150 [default = true];
optional bool EnableTopicAutopartitioningForReplication = 151 [default = false];
optional bool EnableTopicAutopartitioningForReplication = 151 [default = true];
optional bool EnableDriveSerialsDiscovery = 152 [default = false];
optional bool EnableSeparateDiskSpaceQuotas = 153 [default = false];
optional bool EnableAntlr4Parser = 154 [default = false];
Expand All @@ -185,7 +185,7 @@ message TFeatureFlags {
optional bool EnableDataShardInMemoryStateMigrationAcrossGenerations = 160 [default = true];
optional bool DisableLocalDBEraseCache = 161 [default = false];
optional bool EnableChecksumsExport = 162 [default = false];
optional bool EnableTopicTransfer = 163 [default = false];
optional bool EnableTopicTransfer = 163 [default = true];
optional bool EnableViewExport = 164 [default = false];
optional bool EnableColumnStore = 165 [default = false];
optional bool EnableStrictAclCheck = 166 [default = false];
Expand Down
Loading