diff --git a/reference/engines/table-engines/log-family/log.mdx b/reference/engines/table-engines/log-family/log.mdx index 610e53923..5324cf869 100644 --- a/reference/engines/table-engines/log-family/log.mdx +++ b/reference/engines/table-engines/log-family/log.mdx @@ -32,10 +32,10 @@ See the detailed description of the [CREATE TABLE](/reference/statements/create/ ## Writing the data {#table_engines-log-writing-the-data} -The `Log` engine efficiently stores data by writing each column to its own file. For every table, the Log engine writes the following files to the specified storage path: +The `Log` engine efficiently stores data by writing each column to its own file. For every table, the `Log` engine writes the following files to the specified storage path: - `.bin`: A data file for each column, containing the serialized and compressed data. -`__marks.mrk`: A marks file, storing offsets and row counts for each data block inserted. Marks are used to facilitate efficient query execution by allowing the engine to skip irrelevant data blocks during reads. +- `__marks.mrk`: A marks file, storing offsets and row counts for each data block inserted. Marks are used to facilitate efficient query execution by allowing the engine to skip irrelevant data blocks during reads. ### Writing process {#writing-process}