You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17-1Lines changed: 17 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,21 @@ table_bloat_check.sql
26
26
27
27
An overhauled table bloat check. Lists tables which are likely to be bloated and estimates bloat amounts. Requires PostgreSQL >= 8.4, superuser access, and a 64-bit compile.
28
28
29
+
Locks
30
+
=====
31
+
32
+
Tools and a set of queries to analyze lock-blocking.
33
+
34
+
transaction_locks.sql
35
+
---------------------
36
+
37
+
Requires: Postgres 9.2+
38
+
39
+
Lists waiting transaction locks and what they're waiting on, if possible.
40
+
Includes relation and query information, but realistically needs to be
41
+
accompanied by full query logging to be useful. Needs to be run
42
+
per active database.
43
+
29
44
30
45
Additional Contributors
31
46
=======================
@@ -34,4 +49,5 @@ In addition to the staff of PostgreSQL Experts, we are indebted
34
49
to:
35
50
36
51
* The authors of the check_postgres.pl script for supplying the
37
-
original bloat queries on which our bloat queries are based.
52
+
original bloat queries on which our bloat queries are based.
53
+
* Andrew Gierth for help on various system queries.
0 commit comments