Skip to content

Commit 8a64a3a

Browse files
authored
Merge pull request #517 from weaviate/v6-comp-opeions
Add zstd comp options to enum
2 parents 5e20abf + 5a4b542 commit 8a64a3a

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

src/main/java/io/weaviate/client6/v1/api/backup/CompressionLevel.java

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,17 @@ public enum CompressionLevel {
1111
BEST_SPEED,
1212
/** Use compression algorithm that prioritizes compression quality. */
1313
@SerializedName("BestCompression")
14-
BEST_COMPRESSION;
14+
BEST_COMPRESSION,
15+
/** Use ZSTD compression algorithm at default (balanced) settings. */
16+
@SerializedName("ZstdDefaultCompression")
17+
ZSTD_DEFAULT,
18+
/** Use ZSTD compression algorithm and prioritize speed. */
19+
@SerializedName("ZstdBestSpeed")
20+
ZSTD_BEST_SPEED,
21+
/** Use ZSTD compression algorithm and prioritize compression quality. */
22+
@SerializedName("ZstdBestCompression")
23+
ZSTD_BEST_COMPRESSION,
24+
/** Do not use compression. */
25+
@SerializedName("NoCompression")
26+
NO_COMPRESSION;
1527
}

0 commit comments

Comments
 (0)