This commit is contained in:
Alexander Tokmakov 2023-01-26 19:01:29 +01:00
parent d7c697ee38
commit 061026c307
3 changed files with 4 additions and 4 deletions

View File

@ -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;

View File

@ -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

View File

@ -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