Skip to content
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

Flip flag default for symmetric put/activate replica selection #33083

Merged
merged 1 commit into from
Jan 6, 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
2 changes: 1 addition & 1 deletion flags/src/main/java/com/yahoo/vespa/flags/Flags.java
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ public class Flags {
"Takes effect immediately");

public static final UnboundBooleanFlag SYMMETRIC_PUT_AND_ACTIVATE_REPLICA_SELECTION = defineFeatureFlag(
"symmetric-put-and-activate-replica-selection", false,
"symmetric-put-and-activate-replica-selection", true,
List.of("vekterli"), "2024-05-23", "2025-03-01",
"Iff true there will be an 1-1 symmetry between the replicas chosen as feed targets " +
"for Put operations and the replica selection logic for bucket activation. If false, " +
Expand Down
Loading