PostgreSQL: Long running query detection
06 Feb 2020I am writing this post as a note to myself. Every time I want to find slow running queries, I search and open this medium post. It is a well written short post which helps me every day. But I wanted to improve that query.
SELECT
pid,
now() - pg_stat_activity.query_start AS duration,
query,
state
FROM pg_stat_activity
WHERE (now() - pg_stat_activity.query_start) > interval '5 minutes'
ORDER BY duration DESC;
As mentioned these are pretty helpful too.
SELECT pg_cancel_backend(pid);
SELECT pg_terminate_backend(pid);
Gists
Tags
- postgres
- performance issue