メインコンテンツへスキップ

説明

圧縮および暗号化コーデックに関する情報が含まれています。 この表を使用すると、利用可能な圧縮および暗号化コーデックに関する情報を確認できます

カラム

  • name (String) — コーデック名。
  • method_byte (UInt8) — 圧縮ファイル内でコーデックを示すバイト。
  • is_compression (UInt8) — このコーデックが何らかのデータを圧縮する場合は True。それ以外の場合は、圧縮を補助するための単なる変換であることがあります。
  • is_generic_compression (UInt8) — このコーデックが lz4 や zstd のような汎用圧縮アルゴリズムである場合は True。
  • is_encryption (UInt8) — このコーデックが暗号化を行う場合は True。
  • is_timeseries_codec (UInt8) — このコーデックが浮動小数点の時系列向けコーデックである場合は True。
  • is_experimental (UInt8) — このコーデックが実験的機能である場合は True。
  • description (String) — コーデックの概要。

Query
SELECT * FROM system.codecs WHERE name='LZ4'
Response
Row 1:
──────
name:                   LZ4
method_byte:            130
is_compression:         1
is_generic_compression: 1
is_encryption:          0
is_timeseries_codec:    0
is_experimental:        0
description:            Extremely fast; good compression; balanced speed and efficiency.
最終更新日 2026年6月10日