Shared
ModelsExpand Collapse
SnapshotCompressionConfig { enabled, algorithm, level }
SnapshotCompressionConfig { enabled, algorithm, level }
enabled: boolean
Enable snapshot memory compression
algorithm?: "zstd" | "lz4"Compression algorithm (defaults to zstd when enabled). Ignored when enabled is false.
algorithm?: "zstd" | "lz4"
Compression algorithm (defaults to zstd when enabled). Ignored when enabled is false.
Accepts one of the following:
"zstd"
"lz4"
level?: number
Compression level. Allowed ranges are zstd=1-19 and lz4=0-9. When omitted, zstd defaults to 1 and lz4 defaults to 0. Ignored when enabled is false.
minimum0
maximum19