Scenario
shared_buffers is at the tiny default and the database constantly re-reads pages from the OS cache. Right-sizing it improves cache hit rates. Diagnose it Check the buffer cache hit ratio: SELECT round(100*sum(blks_hit)/greatest(sum(blks_hit)+sum(blks_read),1),2) AS cache_hit_pct FROM pg_stat_database;…
Investigation Path
Career Impact
This scenario builds production judgment and operational confidence under pressure.