Created
August 15, 2023 12:58
-
-
Save tom-clickhouse/8fe01e952076dceb3be909da5d891edb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WITH | |
'default' AS db_name, | |
'wikistat' AS table_name, | |
10 AS interval_seconds, | |
(SELECT uuid FROM system.tables WHERE database = db_name and name = table_name) AS table_id, | |
(SELECT min(event_time) FROM system.part_log WHERE table_uuid = table_id) AS start_time | |
SELECT | |
toStartOfInterval(event_time, toIntervalSecond(interval_seconds)) AS t, | |
dateDiff('second', toStartOfInterval(start_time, toIntervalSecond(interval_seconds)), t) AS seconds, | |
max(value) as entries | |
FROM clusterAllReplicas(default, system.asynchronous_metric_log) | |
WHERE event_time >= start_time | |
AND metric = 'ReplicasSumInsertsInQueue' | |
GROUP BY t | |
ORDER BY t DESC | |
SETTINGS skip_unavailable_shards = 1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment