Merge pull request #13616 from hagen1778/max-insert-block-size-docs

[docs]: explicitly mention unit of measurement for `max_insert_block_size`
This commit is contained in:
alexey-milovidov 2020-08-14 03:14:49 +03:00 committed by GitHub
commit 4dc12873b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 на сервере не влияет на размер вставляемых блоков.