Created
August 3, 2020 08:25
-
-
Save Haelle/b6a15ad23a37bdf51e82aa2f97bdd80b to your computer and use it in GitHub Desktop.
See Postgres blocking queries
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select pid, usename, pg_blocking_pids(pid) as blocked_by, query as blocked_query | |
from pg_stat_activity | |
where cardinality(pg_blocking_pids(pid)) > 0; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment