Created
November 3, 2017 08:20
-
-
Save kkirsanov/4399cd1bb659045524ec19c01cee8f98 to your computer and use it in GitHub Desktop.
Какая табличка чаще всего пишет на диск
This file contains hidden or 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 | |
all_tables AS | |
( | |
SELECT * | |
FROM ( | |
SELECT | |
'all' :: TEXT AS table_name, | |
sum((coalesce(heap_blks_read, 0) + | |
coalesce(idx_blks_read, 0) + | |
coalesce(toast_blks_read, 0) + | |
coalesce(tidx_blks_read, 0))) AS from_disk, | |
sum((coalesce(heap_blks_hit, 0) + coalesce(idx_blks_hit, 0) | |
+ | |
coalesce(toast_blks_hit, 0) + | |
coalesce(tidx_blks_hit, 0))) AS from_cache | |
FROM | |
pg_statio_all_tables --> change to pg_statio_USER_tables if you want to check only user tables (excluding postgres's own tables) | |
) a | |
WHERE (from_disk + from_cache) > 0 -- discard tables without hits | |
), | |
tables AS | |
( | |
SELECT * | |
FROM ( | |
SELECT | |
relname AS table_name, | |
((coalesce(heap_blks_read, 0) + coalesce(idx_blks_read, 0) + | |
coalesce(toast_blks_read, 0) + coalesce(tidx_blks_read, | |
0))) AS from_disk, | |
((coalesce(heap_blks_hit, 0) + coalesce(idx_blks_hit, 0) + | |
coalesce(toast_blks_hit, 0) + coalesce(tidx_blks_hit, | |
0))) AS from_cache | |
FROM | |
pg_statio_all_tables --> change to pg_statio_USER_tables if you want to check only user tables (excluding postgres's own tables) | |
) a | |
WHERE (from_disk + from_cache) > 0 -- discard tables without hits | |
) | |
SELECT | |
TABLE_NAME AS "table name", | |
from_disk AS "disk hits", | |
round((from_disk :: NUMERIC / (from_disk + from_cache) :: NUMERIC) * | |
100.0, | |
2) AS "% disk hits", | |
round( | |
(from_cache :: NUMERIC / (from_disk + from_cache) :: NUMERIC) * | |
100.0, | |
2) AS "% cache hits", | |
(from_disk + from_cache) AS "total hits" | |
FROM (SELECT * | |
FROM all_tables | |
UNION ALL SELECT * | |
FROM TABLES) a | |
ORDER BY (CASE WHEN TABLE_NAME = 'all' | |
THEN 0 | |
ELSE 1 END), from_disk DESC; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment