[docs]: explicitly mention unit of measurement for max_insert_block_size

Without explicitly defined unit of measurement the description for
setting `max_insert_block_size` may result into confusion and mistakenly
interpret as bytes.
This commit is contained in:
roman 2020-08-11 14:55:36 +01:00
parent 7371cf6bd1
commit f18c1ce03e
2 changed files with 2 additions and 2 deletions

View File

@ -654,7 +654,7 @@ log_query_threads=1
## max\_insert\_block\_size {#settings-max_insert_block_size}
The size of blocks to form for insertion into a table.
The size of blocks (in a count of rows) to form for insertion into a table.
This setting only applies in cases when the server forms the blocks.
For example, for an INSERT via the HTTP interface, the server parses the data format and forms blocks of the specified size.
But when using clickhouse-client, the client parses the data itself, and the max\_insert\_block\_size setting on the server doesnt affect the size of the inserted blocks.

View File

@ -571,7 +571,7 @@ log_query_threads=1
## max\_insert\_block\_size {#settings-max_insert_block_size}
Формировать блоки указанного размера, при вставке в таблицу.
Формировать блоки указанного размера (в количестве строк), при вставке в таблицу.
Эта настройка действует только в тех случаях, когда сервер сам формирует такие блоки.
Например, при INSERT-е через HTTP интерфейс, сервер парсит формат данных, и формирует блоки указанного размера.
А при использовании clickhouse-client, клиент сам парсит данные, и настройка max\_insert\_block\_size на сервере не влияет на размер вставляемых блоков.