PostgreSQL

Bloated indexes prevent efficient index-only scans

warning
performanceUpdated Mar 4, 2026
Technologies:
How to detect:

Index bloat degrades performance of covering indexes. Even when using index-only scans, bloated indexes require scanning more pages than necessary to satisfy queries.

Recommended action:

Monitor index bloat metrics. Use REINDEX CONCURRENTLY to rebuild heavily bloated indexes without blocking reads or writes. Schedule periodic concurrent reindexing for covering indexes.