forked from HariSekhon/SQL-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
postgres_idle_sessions_current_db_kill.sql
47 lines (45 loc) · 1.24 KB
/
postgres_idle_sessions_current_db_kill.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
--
-- Author: Hari Sekhon
-- Date: 2020-08-06 00:00:35 +0100 (Thu, 06 Aug 2020)
--
-- vim:ts=2:sts=2:sw=2:et:filetype=sql
--
-- https://github.com/HariSekhon/SQL-scripts
--
-- License: see accompanying Hari Sekhon LICENSE file
--
-- If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
--
-- https://www.linkedin.com/in/HariSekhon
--
-- Kills idle PostgreSQL sessions for the currently select DB that haven't been used in > 15 minutes
--
-- Requires PostgreSQL 9.2+
--
-- Tested on PostgreSQL 9.2+, 10.x, 11.x, 12.x, 13.0
SELECT
pg_terminate_backend(pid)
FROM
pg_stat_activity
WHERE
-- don't kill yourself
pid <> pg_backend_pid()
-- AND
-- don't kill your admin tools
--application_name !~ '(?:psql)|(?:pgAdmin.+)'
-- AND
--usename not in ('postgres')
AND
datname = current_database()
AND
query in ('')
AND
state in ('idle', 'idle in transaction', 'idle in transaction (aborted)', 'disabled')
AND
--state_change < current_timestamp - INTERVAL '15' MINUTE;
(
(current_timestamp - query_start) > interval '15 minutes'
OR
(query_start IS NULL AND (current_timestamp - backend_start) > interval '15 minutes')
)
;