* add a test for cmrk and cidx checksums
* Bug fix for checksum of compress marks
* Fixed issue with .cidx checksum
* Fixed style check
* Updated 02253_empty_part_checksums.reference file with part details output
* Update 02253_empty_part_checksums.sh
* Updated to check is_compressed flag instead of size
* Update 02253_empty_part_checksums.sh
---------
Co-authored-by: Alexander Tokmakov <tavplubix@clickhouse.com>
* Add ability to log when max_partitions_per_insert_block is reached
There's plenty of reasons to drop max_partitions_per_insert_block
down from it's default of 100, with the main one being even touching
remotely close to this number of partitions will create a lot of
merge activity that can de-stabilise a cluster.
This commit adds the ability to log when the above limit is reached
rather than throw an exception, so that you can gauge the impact on
users when dropping this value down.
* Update docs/ru/operations/settings/query-complexity.md
Co-authored-by: Nikita Taranov <nickita.taranov@gmail.com>
* Update docs/ru/operations/settings/query-complexity.md
Co-authored-by: Nikita Taranov <nickita.taranov@gmail.com>
* Update docs/ru/operations/settings/query-complexity.md
Co-authored-by: Nikita Taranov <nickita.taranov@gmail.com>
---------
Co-authored-by: Nikita Taranov <nickita.taranov@gmail.com>
* metrics_perf_events_enabled turn off in perf tests
* turn on metrics_perf_events_enabled for heating and profile requests
* close_perf_descriptors fix the condition
* do not read opend but disabled perf event
* Revert "do not read opend but disabled perf event"
This reverts commit eeab1c9c63.
Before you may see the following:
2023.07.25 09:21:39.705559 [ 692 ] {6b5e1299-1b64-4dbb-b25d-45e10027db22} <Trace> test_hkt5nnqj.dist_opentelemetry.DirectoryMonitor.default: Finished processing `` (took 37 ms)
Because file_path and current_file are the references to the same
variable in DistributedAsyncInsertDirectoryQueue::processFile().
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>