Scenario
Storage is up but is it the table or its indexes? They bloat differently and need different fixes. Diagnose it Compare heap vs index sizes over time: SELECT pg_size_pretty(pg_relation_size('t')) AS heap, pg_size_pretty(pg_indexes_size('t')) AS idx; Why it…
Investigation Path
Career Impact
This scenario builds production judgment and operational confidence under pressure.