summaryrefslogtreecommitdiffstats
path: root/flags
diff options
context:
space:
mode:
authorTor Brede Vekterli <vekterli@yahooinc.com>2022-09-01 10:46:36 +0200
committerGitHub <noreply@github.com>2022-09-01 10:46:36 +0200
commit461ce9181febf71006cfea994b5c5087988425b8 (patch)
tree56bcf7ebf1510277610c40c13ed0753aed8b0939 /flags
parent669b5734b8700c1e37bf34f994fc7690f78c74c5 (diff)
parent0912eb0949227c2b0fa8aa3a2c5a9b9cc2138a9e (diff)
Merge pull request #23882 from vespa-engine/vekterli/flag-expiry-bump-sep-2022-edition
Feature flag expiry bump, September 2022 edition
Diffstat (limited to 'flags')
-rw-r--r--flags/src/main/java/com/yahoo/vespa/flags/Flags.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/flags/src/main/java/com/yahoo/vespa/flags/Flags.java b/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
index 0677804cca9..2e1ff05b4aa 100644
--- a/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
+++ b/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
@@ -283,7 +283,7 @@ public class Flags {
public static final UnboundDoubleFlag MIN_NODE_RATIO_PER_GROUP = defineDoubleFlag(
"min-node-ratio-per-group", 0.0,
- List.of("geirst", "vekterli"), "2021-07-16", "2022-09-01",
+ List.of("geirst", "vekterli"), "2021-07-16", "2022-11-01",
"Minimum ratio of nodes that have to be available (i.e. not Down) in any hierarchic content cluster group for the group to be Up",
"Takes effect at redeployment",
ZONE_ID, APPLICATION_ID);
@@ -312,7 +312,7 @@ public class Flags {
public static final UnboundBooleanFlag UNORDERED_MERGE_CHAINING = defineFeatureFlag(
"unordered-merge-chaining", true,
- List.of("vekterli", "geirst"), "2021-11-15", "2022-09-01",
+ List.of("vekterli", "geirst"), "2021-11-15", "2022-11-01",
"Enables the use of unordered merge chains for data merge operations",
"Takes effect at redeploy",
ZONE_ID, APPLICATION_ID);
@@ -379,7 +379,7 @@ public class Flags {
public static final UnboundIntFlag PERSISTENCE_THROTTLING_WINDOW_SIZE = defineIntFlag(
"persistence-throttling-window-size", -1,
- List.of("vekterli"), "2022-02-23", "2022-09-01",
+ List.of("vekterli"), "2022-02-23", "2022-11-01",
"If greater than zero, sets both min and max window size to the given number, effectively " +
"turning dynamic throttling into a static throttling policy. " +
"Only applies if DYNAMIC policy is used.",
@@ -388,14 +388,14 @@ public class Flags {
public static final UnboundDoubleFlag PERSISTENCE_THROTTLING_WS_RESIZE_RATE = defineDoubleFlag(
"persistence-throttling-ws-resize-rate", 3.0,
- List.of("vekterli"), "2022-02-23", "2022-09-01",
+ List.of("vekterli"), "2022-02-23", "2022-11-01",
"Sets the dynamic throttle policy resize rate. Only applies if DYNAMIC policy is used.",
"Takes effect on redeployment",
ZONE_ID, APPLICATION_ID);
public static final UnboundBooleanFlag PERSISTENCE_THROTTLING_OF_MERGE_FEED_OPS = defineFeatureFlag(
"persistence-throttling-of-merge-feed-ops", true,
- List.of("vekterli"), "2022-02-24", "2022-09-01",
+ List.of("vekterli"), "2022-02-24", "2022-11-01",
"If true, each put/remove contained within a merge is individually throttled as if it " +
"were a put/remove from a client. If false, merges are throttled at a persistence thread " +
"level, i.e. per ApplyBucketDiff message, regardless of how many document operations " +