External Disks for Storing Data

Data, processed in ClickHouse, is usually stored in the local file system — on the same machine with the ClickHouse server. That requires large-capacity disks, which can be expensive enough. To avoid that you can store the data remotely — on Amazon S3 disks or in the Hadoop Distributed File System (HDFS).

To work with data stored on Amazon S3 disks use S3 table engine, and to work with data in the Hadoop Distributed File System — HDFS table engine.

Zero-copy Replication

ClickHouse supports zero-copy replication for S3 and HDFS disks, which means that if the data is stored remotely on several machines and needs to be synchronized, then only the metadata is replicated (paths to the data parts), but not the data itself.

Configuring HDFS

MergeTree and Log family table engines can store data to HDFS using a disk with type HDFS.

Configuration markup:

  1. <yandex>
  2. <storage_configuration>
  3. <disks>
  4. <hdfs>
  5. <type>hdfs</type>
  6. <endpoint>hdfs://hdfs1:9000/clickhouse/</endpoint>
  7. </hdfs>
  8. </disks>
  9. <policies>
  10. <hdfs>
  11. <volumes>
  12. <main>
  13. <disk>hdfs</disk>
  14. </main>
  15. </volumes>
  16. </hdfs>
  17. </policies>
  18. </storage_configuration>
  19. <merge_tree>
  20. <min_bytes_for_wide_part>0</min_bytes_for_wide_part>
  21. </merge_tree>
  22. </yandex>

Required parameters:

  • endpoint — HDFS endpoint URL in path format. Endpoint URL should contain a root path to store data.

Optional parameters:

  • min_bytes_for_seek — The minimal number of bytes to use seek operation instead of sequential read. Default value: 1 Mb.

Using Virtual File System for Data Encryption

You can encrypt the data stored on S3, or HDFS external disks, or on a local disk. To turn on the encryption mode, in the configuration file you must define a disk with the type encrypted and choose a disk on which the data will be saved. An encrypted disk ciphers all written files on the fly, and when you read files from an encrypted disk it deciphers them automatically. So you can work with an encrypted disk like with a normal one.

Example of disk configuration:

  1. <disks>
  2. <disk1>
  3. <type>local</type>
  4. <path>/path1/</path>
  5. </disk1>
  6. <disk2>
  7. <type>encrypted</type>
  8. <disk>disk1</disk>
  9. <path>path2/</path>
  10. <key>_16_ascii_chars_</key>
  11. </disk2>
  12. </disks>

For example, when ClickHouse writes data from some table to a file store/all_1_1_0/data.bin to disk1, then in fact this file will be written to the physical disk along the path /path1/store/all_1_1_0/data.bin.

When writing the same file to disk2, it will actually be written to the physical disk at the path /path1/path2/store/all_1_1_0/data.bin in encrypted mode.

Required parameters:

  • typeencrypted. Otherwise the encrypted disk is not created.
  • disk — Type of disk for data storage.
  • key — The key for encryption and decryption. Type: Uint64. You can use key_hex parameter to encrypt in hexadecimal form.
    You can specify multiple keys using the id attribute (see example above).

Optional parameters:

  • path — Path to the location on the disk where the data will be saved. If not specified, the data will be saved in the root directory.
  • current_key_id — The key used for encryption. All the specified keys can be used for decryption, and you can always switch to another key while maintaining access to previously encrypted data.
  • algorithmAlgorithm for encryption. Possible values: AES_128_CTR, AES_192_CTR or AES_256_CTR. Default value: AES_128_CTR. The key length depends on the algorithm: AES_128_CTR — 16 bytes, AES_192_CTR — 24 bytes, AES_256_CTR — 32 bytes.

Example of disk configuration:

  1. <yandex>
  2. <storage_configuration>
  3. <disks>
  4. <disk_s3>
  5. <type>s3</type>
  6. <endpoint>...
  7. </disk_s3>
  8. <disk_s3_encrypted>
  9. <type>encrypted</type>
  10. <disk>disk_s3</disk>
  11. <algorithm>AES_128_CTR</algorithm>
  12. <key_hex id="0">00112233445566778899aabbccddeeff</key_hex>
  13. <key_hex id="1">ffeeddccbbaa99887766554433221100</key_hex>
  14. <current_key_id>1</current_key_id>
  15. </disk_s3_encrypted>
  16. </disks>
  17. </storage_configuration>
  18. </yandex>