Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions reference/engines/table-engines/log-family/log.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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:

- `<column>.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}

Expand Down