DBDB.io The Encyclopedia of Database Systems · Est. 2017
Database of Databases

Database Entry

ClickHouse


CilckHouse is an open-source column-oriented OLAP DBMS. It is designed to provide linear scalability of queries.[04][05]

Source Code
https://github.com/ClickHouse/ClickHouse[02]
Developer
Country of Origin
RU
Start Year
2016 [04]
Project Types
Commercial, Open Source
Written in
C++
Supported Languages
C++
Operating System
Linux
License
Apache v2

Database Entry

ClickHouse


CilckHouse is an open-source column-oriented OLAP DBMS. It is designed to provide linear scalability of queries.[04][05]

History[04]


ClickHouse is developed by a Russian company called Yandex. It is designed for multiple projects within Yandex. Yandex needed a DBMS to analyze large amounts of data, thus they began to develop their own column-oriented DBMS. The prototype of ClickHouse appeared in 2009 and it was released in 2016.

Checkpoints


ClickHouse doesn't support transactions.

Concurrency Control


ClickHouse does not support multi-statement transactions.

Data Model[06]


ClickHouse uses the relational database model.

Indexes[07]


ClickHouse supports primary key indexes. The index mechanism is called sparse index. In the MergeTree, data are sorted by primary key lexicographically in each part. Then ClickHouse selects some marks every index_granualarity rows. These marks are served as sparse indexes, which allows efficient range queries.

Isolation Levels


ClickHouse doesn't support transactions and isolation levels.

Joins[08]


ClickHouse only supports hash join, which is done by placing right part of data in a hash table in memory. Hash join is faster but require enough memory.

Logging[09]


ClickHouse replicates its data on multiple nodes and monitors data synchronicity on replicas. It recovers after failures by syncing data from other replica nodes.

Query Compilation[10][05]


ClickHouse supports runtime code generation. The code is generated for every kind of query on the fly, removing all indirection and dynamic dispatch. Runtime code generation can be better when it fuses many operations together and fully utilizes CPU execution units.

Query Execution[09]


Query Interface[09]


ClickHouses provides two types of parsers: a full SQL parser and a data format parser. It uses SQL parser for all types of queries and the data format parser only for INSERT queries. Beyond the query language, it provides multiple user interfaces, including HTTP interface, JDBC driver, TCP interface, command-line client, etc.

Storage Architecture


ClickHouse has multiple types of table engines. The type of the table engine determines where the data is stored, concurrent level, whether indexes are supported and some other properties. The table engines that store data on disks include TinyLog and Log. The Memory engine stores data in memory and this table engine is mainly used for temporary tables with external query data. The data of Memory engine will disapper after the server is restarted.

Storage Model


ClickHouse is a column-oriented DBMS and it stores data by columns.

Stored Procedures[11][12]


Currently, stored procedures and UDF are listed as open issues in ClickHouse.

System Architecture[04][10]


ClickHouse system is a cluster of shards. It uses asynchronous multimaster replication and there is no single point of contention across the system.

Views[09]


ClickHouse supports both virtual views and materialized views. The materialized views store data transformed by corresponding SELECT query. The SELECT query can contain DISTINCT, GROUP BY, ORDER BY, LIMIT, etc.

Revision #11