How to Track PostgreSQL Execution Plans using pg_store_plans
Extension
Published in
7 min readMar 6
--
Tracking PostgreSQL execution plans is an important metric for enhancing PostgreSQL performance. In an earlier tutorial discussing pg_stat_statements
extension, we learned how to track PostgreSQL queries. In this tutorial, we will discuss how to track PostgreSQL execution plans run by the server optimizer with the pg_store_plans
module, an extension created by the…