From 4f488e7dea83c3ed0ea756c59db67db6593062ce Mon Sep 17 00:00:00 2001 From: Joe Elliott Date: Mon, 16 Dec 2019 15:50:04 -0500 Subject: [PATCH] Removed unsupported encodings from docs (#1432) * Removed unsupported encodings from docs Signed-off-by: Joe Elliott * Also removed none Signed-off-by: Joe Elliott --- docs/configuration/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration/README.md b/docs/configuration/README.md index 76544e9d69..4292d950d9 100644 --- a/docs/configuration/README.md +++ b/docs/configuration/README.md @@ -278,7 +278,7 @@ The `ingester_config` block configures Ingesters. # A non zero value will create chunks with a variable number of blocks to meet the target size. [chunk_target_size: | default = 0] -# The compression algorithm to use for chunks. (supported: gzip, gzip-1, lz4, none, snappy, snappyv2) +# The compression algorithm to use for chunks. (supported: gzip, lz4, snappy) # You should choose your algorithm depending on your need: # - `gzip` highest compression ratio but also slowest decompression speed. (144 kB per chunk) # - `lz4` fastest compression speed (188 kB per chunk)