Conversation
|
This is an automated comment for commit d41eca1 with description of existing statuses. It's updated for the latest CI running
|
| void DistributedAsyncInsertDirectoryQueue::shutdown() | ||
| { | ||
| /// It's incompatible with should_batch_inserts | ||
| /// because processFilesWithBatching may push to the queue after shutdown |
There was a problem hiding this comment.
Actually it should not be a problem, since this queue is only in memory and it can be finished (which will break push) only in case of shutdown, so we can simply log this error and continue.
There was a problem hiding this comment.
I mean that it may trigger a logical error:
ClickHouse/src/Storages/Distributed/DistributedAsyncInsertDirectoryQueue.cpp
Lines 661 to 662 in 9ab545e
There was a problem hiding this comment.
Yeah, and I was suggesting to replace this LOGICAL_ERROR with LOG_WARNING or smth
|
|
||
| void shutdownAndDropAllData(); | ||
|
|
||
| void shutdown(); |
There was a problem hiding this comment.
Maybe rename it to stop or similar, or shutdownWithoutFlush?
|
Upgrade check (tsan) - #52540 |
|
AST fuzzer is broken because of sending logs from CI to the cloud |
Changelog category (leave one):
Follow-up to #53501
It still was waiting for flush in
~DistributedAsyncInsertDirectoryQueue(), avoid thisFixes #53408