From 08f109724bb47e54882abbdc4bd6cccb0aaea84e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Botond=20D=C3=A9nes?= Date: Tue, 20 Aug 2024 15:29:26 +0300 Subject: [PATCH] docs/cql/ddl.rst: fix description of sstable_compression ScyllaDB doesn't support custom compressors. The available compressors are the only available ones, not the default ones. Adjust the text to reflect this. Closes scylladb/scylladb#20225 --- docs/cql/ddl.rst | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/cql/ddl.rst b/docs/cql/ddl.rst index 3442d855ac..10781770f4 100644 --- a/docs/cql/ddl.rst +++ b/docs/cql/ddl.rst @@ -759,8 +759,6 @@ available: ========================= =============== ============================================================================= ``sstable_compression`` LZ4Compressor The compression algorithm to use. Available compressors are LZ4Compressor, SnappyCompressor, DeflateCompressor, and ZstdCompressor. - A custom compressor can be provided by specifying the full class - name as a “string constant”:#constants. ``chunk_length_in_kb`` 4 On disk SSTables are compressed by block (to allow random reads). This defines the size (in KB) of the block. Bigger values may improve the compression rate, but increases the minimum size of data to be read from disk