Merge pull request #63005 from ClickHouse/docs-wait_for_async_insert-details

[Docs] Add details for wait_for_async_insert
This commit is contained in:
Raúl Marín 2024-05-06 08:28:15 +00:00 committed by GitHub
commit 2c6d0c69ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1925,7 +1925,9 @@ Default value: `16`.
### wait_for_async_insert {#wait-for-async-insert}
Enables or disables waiting for processing of asynchronous insertion. If enabled, server will return `OK` only after the data is inserted. Otherwise, it will return `OK` even if the data wasn't inserted.
Enables or disables waiting for processing of asynchronous insertion. If enabled, server will return `OK` only after the data is inserted. Otherwise, it will return `OK` as soon it has received the data, but it might still fail to parse or insert it later (You can check in system.asynchronous_insert_log)
If you want to use asynchronous inserts, we need to also enable [`async_insert`](#async-insert).
Possible values: