> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-fix-nav-issues.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> clickhouse-compressor のドキュメント

# clickhouse-compressor

データの圧縮と解凍を行うシンプルなプログラム。

<div id="examples">
  ### 例
</div>

データをLZ4で圧縮します:

```bash theme={null}
$ ./clickhouse-compressor < input_file > output_file
```

LZ4形式のデータを展開します:

```bash theme={null}
$ ./clickhouse-compressor --decompress < input_file > output_file
```

ZSTD レベル 5 でデータを圧縮します：

```bash theme={null}
$ ./clickhouse-compressor --codec 'ZSTD(5)' < input_file > output_file
```

4バイト幅のDeltaとZSTDレベル10でデータを圧縮します。

```bash theme={null}
$ ./clickhouse-compressor --codec 'Delta(4)' --codec 'ZSTD(10)' < input_file > output_file
```
