table_size
Table size bytesDimensions:None
Interface Metrics (2)
Dimensions:None
Dimensions:None
Technical Annotations (5)
Configuration Parameters (1)
autovacuum_vacuum_scale_factorrecommended: 0.01-0.05CLI Commands (1)
SELECT tablename, pg_size_pretty(pg_total_relation_size(quote_ident(tablename)::regclass)) AS total_size, pg_size_pretty(pg_relation_size(quote_ident(tablename)::regclass)) AS table_size, pg_size_pretty(pg_total_relation_size(quote_ident(tablename)::regclass) - pg_relation_size(quote_ident(tablename)::regclass)) AS index_size FROM pg_tables WHERE schemaname = 'public' ORDER BY pg_total_relation_size(quote_ident(tablename)::regclass) DESC LIMIT 10;diagnosticTechnical References (3)
VACUUM FULLcomponentpg_repackcomponenttable bloatconceptRelated Insights (1)
Table bloat wastes disk space without autovacuum full or pg_repackinfo
▸