forked from awslabs/amazon-redshift-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lock_wait.sql
98 lines (95 loc) · 3.36 KB
/
lock_wait.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/**********************************************************************************************
Purpose: Return instances of table filter for all or a given table in the past 7 days
Columns:
pid: Process/Session Id
username: User name
dbname: Database
relation: Object id
schemaname: Schema
objectname: Object Name
mode: Lock Mode (AcessShareLock, AccessExclusiveLock, etc)
granted: Granted (True or False)
obj_type: Type of Object
txn_start: Start Time of the transaction that asked for the lock
block_sec: Seconds Holding the Lock
block_min: Minutes Holding the lock
block_hr: Hours Holding the lock
waiting: Seconds waiting for the lock
max_sec_blocking: Peak of seconds blocking other sessions
num_blocking: Number of sessions blocked by this lock
pidlist: List of Sessions being blocked by this lock
Notes:
History:
2017-07-15 David Biddle created
2017-08-10 ericfe Minor updates or sorting
**********************************************************************************************/
WITH locks AS (
SELECT svv.xid
, l.pid
, svv.txn_owner as username
, TRIM(d.datname) as dbname
, svv.relation
, TRIM(nsp.nspname) as schemaname
, TRIM(c.relname) as objectname
, l.mode
, l.granted
, svv.lockable_object_type as obj_type
, svv.txn_start
, ROUND((EXTRACT(EPOCH FROM current_timestamp) - EXTRACT(EPOCH FROM svv.txn_start)),2) as block_sec
, ROUND((EXTRACT(EPOCH FROM current_timestamp) - EXTRACT(EPOCH FROM svv.txn_start))/60,2) as block_min
, ROUND((EXTRACT(EPOCH FROM current_timestamp) - EXTRACT(EPOCH FROM svv.txn_start))/60/60,2) as block_hr
, CASE WHEN l.granted is false THEN ROUND((EXTRACT(EPOCH FROM current_timestamp) - EXTRACT(EPOCH FROM rct.starttime)),2) ELSE NULL END as waiting
FROM pg_catalog.pg_locks l
INNER JOIN pg_catalog.svv_transactions svv ON l.pid = svv.pid
AND l.relation = svv.relation
AND svv.lockable_object_type is not null
LEFT JOIN pg_catalog.pg_class c on c.oid = svv.relation
LEFT JOIN pg_namespace nsp ON nsp.oid = c.relnamespace
LEFT JOIN pg_catalog.pg_database d on d.oid = l.database
LEFT OUTER JOIN stv_recents rct ON rct.pid = l.pid
WHERE l.pid <> pg_backend_pid()
)
select distinct * from (
SELECT l.xid
, l.pid
, l.username
, l.dbname
, l.relation
, l.schemaname
, l.objectname
, l.mode
, DECODE(l.granted, true, 'True', false, 'False') granted
, l.obj_type
, l.txn_start
, DECODE(l.granted, true, l.block_sec, NULL) as block_sec
, DECODE(l.granted, true, l.block_min, NULL) as block_min
, DECODE(l.granted, true, l.block_hr, NULL) as block_hr
, waiting
, b.max_sec_blocking
, b.num_blocking
, b.pidlist
FROM locks l
LEFT OUTER JOIN
(
SELECT relation
, mode
, listagg(b.pid, ',') as pidlist
, MIN(block_sec) as min_sec_blocking
, MAX(waiting) as max_sec_blocking
, COUNT(*) as num_blocking
FROM locks b
WHERE granted is false
GROUP BY relation
, mode
) b
ON l.relation = b.relation
AND l.granted is true
AND (l.mode like '%Exclusive%'
OR (l.mode like '%Share%' AND b.mode like '%ExclusiveLock' and b.mode not like '%Share%'))
)
-- where objectname like 'pg_%'
ORDER BY granted DESC
, max_sec_blocking desc nulls last
, block_sec DESC,
waiting desc nulls last
;