We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5e20abf + 5a4b542 commit 8a64a3aCopy full SHA for 8a64a3a
1 file changed
src/main/java/io/weaviate/client6/v1/api/backup/CompressionLevel.java
@@ -11,5 +11,17 @@ public enum CompressionLevel {
11
BEST_SPEED,
12
/** Use compression algorithm that prioritizes compression quality. */
13
@SerializedName("BestCompression")
14
- BEST_COMPRESSION;
+ 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;
27
}
0 commit comments