mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 16:42:05 +00:00
fix
This commit is contained in:
parent
d7c697ee38
commit
061026c307
@ -126,7 +126,7 @@ ReplicatedMergeTreePartCheckThread::MissingPartSearchResult ReplicatedMergeTreeP
|
||||
* and don't delete the queue entry when in doubt.
|
||||
*/
|
||||
|
||||
LOG_WARNING(log, "Checking if anyone has a part {} or covering part.", part_name);
|
||||
LOG_INFO(log, "Checking if anyone has a part {} or covering part.", part_name);
|
||||
|
||||
bool found_part_with_the_same_min_block = false;
|
||||
bool found_part_with_the_same_max_block = false;
|
||||
|
@ -7,7 +7,7 @@
|
||||
70 0.16
|
||||
80 0.08
|
||||
90 0.04
|
||||
100 0.001
|
||||
100 0.005
|
||||
110 0.01
|
||||
120 3
|
||||
130 10
|
||||
|
@ -39,9 +39,9 @@ select 90, max2((select count() from logs where level <= 'Information' group by
|
||||
-- Same as above for Warning
|
||||
with ('Not enabled four letter command {}') as frequent_in_tests
|
||||
select 100, max2((select count() from logs where level = 'Warning' and message_format_string not in frequent_in_tests
|
||||
group by message_format_string order by count() desc limit 1) / (select count() from logs), 0.001);
|
||||
group by message_format_string order by count() desc limit 1) / (select count() from logs), 0.005);
|
||||
|
||||
-- Same as above for Error (it's funny that we have 10 times less warnings than errors)
|
||||
-- Same as above for Error
|
||||
select 110, max2((select count() from logs where level = 'Warning' group by message_format_string order by count() desc limit 1) / (select count() from logs), 0.01);
|
||||
|
||||
-- Avoid too noisy messages: limit the number of messages with high frequency
|
||||
|
Loading…
Reference in New Issue
Block a user