We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 699c8a6 commit f93d860Copy full SHA for f93d860
1 file changed
src/main/java/io/weaviate/client6/v1/api/backup/CompressionLevel.java
@@ -12,4 +12,16 @@ public enum CompressionLevel {
12
/** Use compression algorithm that prioritizes compression quality. */
13
@SerializedName("BestCompression")
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;
27
}
0 commit comments