summaryrefslogtreecommitdiffstats
path: root/flags
diff options
context:
space:
mode:
authorHarald Musum <musum@yahooinc.com>2023-01-24 10:52:59 +0100
committerHarald Musum <musum@yahooinc.com>2023-01-24 10:52:59 +0100
commite61cbfc643b503d80ef018e2571c6cedfcdd1007 (patch)
treea80396d59326efcca53463e90dc04b8508558e61 /flags
parent14bf3cb2666a849db1a18ea4f8839cc116d68dfc (diff)
Use zstd as preferred compression method for file distribution
Diffstat (limited to 'flags')
-rw-r--r--flags/src/main/java/com/yahoo/vespa/flags/Flags.java12
1 files changed, 6 insertions, 6 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 1b6593581ff..dbf3f0486ab 100644
--- a/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
+++ b/flags/src/main/java/com/yahoo/vespa/flags/Flags.java
@@ -288,16 +288,16 @@ public class Flags {
APPLICATION_ID);
public static final UnboundListFlag<String> FILE_DISTRIBUTION_ACCEPTED_COMPRESSION_TYPES = defineListFlag(
- "file-distribution-accepted-compression-types", List.of("gzip", "lz4"), String.class,
- List.of("hmusum"), "2022-07-05", "2023-02-01",
- "´List of accepted compression types used when asking for a file reference. Valid values: gzip, lz4",
+ "file-distribution-accepted-compression-types", List.of("gzip", "lz4", "zstd"), String.class,
+ List.of("hmusum"), "2022-07-05", "2023-02-15",
+ "´List of accepted compression types used when asking for a file reference. Valid values: gzip, lz4, zstd",
"Takes effect on restart of service",
APPLICATION_ID);
public static final UnboundListFlag<String> FILE_DISTRIBUTION_COMPRESSION_TYPES_TO_SERVE = defineListFlag(
- "file-distribution-compression-types-to-use", List.of("lz4", "gzip"), String.class,
- List.of("hmusum"), "2022-07-05", "2023-02-01",
- "List of compression types to use (in preferred order), matched with accepted compression types when serving file references. Valid values: gzip, lz4",
+ "file-distribution-compression-types-to-use", List.of("zstd", "lz4", "gzip"), String.class,
+ List.of("hmusum"), "2022-07-05", "2023-02-15",
+ "List of compression types to use (in preferred order), matched with accepted compression types when serving file references. Valid values: gzip, lz4, zstd",
"Takes effect on restart of service",
APPLICATION_ID);