ClickHouse/docs/en/operations/table_engines/tinylog.md
BayoNet 1143eefda6 DOCAPI-7991: EN review, RU translation for the update of Log engines docs (#7040)
* Typo fix.

* Update log_family.md (#43)

* Update tinylog.md (#44)

* DOCAPI-7991: RU translation.
2019-09-24 02:55:50 +03:00

10 lines
854 B
Markdown

# TinyLog
The engine belongs to the log engine family. See [Log Engine Family](log_family.md) for common properties of log engines and their differences.
This table engine is typically used with the write-once method: write data one time, then read it as many times as necessary. For example, you can use `TinyLog`-type tables for intermediary data that is processed in small batches. Note that storing data in a large number of small tables is inefficient.
Queries are executed in a single stream. In other words, this engine is intended for relatively small tables (up to about 1,000,000 rows). It makes sense to use this table engine if you have many small tables, since it's simpler than the [Log](log.md) engine (fewer files need to be opened).
[Original article](https://clickhouse.yandex/docs/en/operations/table_engines/tinylog/) <!--hide-->