mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 02:53:38 +00:00
06aa03f1a7
* Doc fixes: rm anchors <a> * Doc fixes: rm anchors <a> * Doc fixes: fix links * Doc fixes: fix the links
17 lines
677 B
Markdown
17 lines
677 B
Markdown
# Table engines {#table_engines}
|
|
|
|
The table engine (type of table) determines:
|
|
|
|
- How and where data is stored, where to write it to, and where to read it from.
|
|
- Which queries are supported, and how.
|
|
- Concurrent data access.
|
|
- Use of indexes, if present.
|
|
- Whether multithreaded request execution is possible.
|
|
- Data replication parameters.
|
|
|
|
When reading, the engine is only required to output the requested columns, but in some cases the engine can partially process data when responding to the request.
|
|
|
|
For most serious tasks, you should use engines from the `MergeTree` family.
|
|
|
|
[Original article](https://clickhouse.yandex/docs/en/operations/table_engines/) <!--hide-->
|