glocktop: Display or print active GFS2 locks.
Read glocktop man page on Linux: $ man 8 glocktop
NAME
glocktop - Display or print active GFS2 locks.
SYNOPSIS
glocktop
[OPTIONS]
DESCRIPTION
The glocktop tool is used to display active GFS2 inter-node locks,
also known as glocks. Simply put, it‘s a tool to filter and interpret the
contents of the glocks debugfs file. The glocks debugfs file shows
all glocks known to GFS2, their holders, and technical data such as flags.
The glocktop tool will only show the glocks that are important: glocks that
are being held or for which there are waiters. It also interprets the debugfs
file of DLM (Distributed Lock Manager).
OPTIONS
- -d <delay>
-
Specify a time delay (in seconds) between reports. (Default is 30 seconds)
- -h
-
Print help information.
- -i
-
Interactive mode. In this mode, glocktop acts more like the top command.
It shows the pertinent glocks on the terminal session (as many as it can
fit). The advantage is that it uses different colors to draw attention to
what‘s important. The disadvantage is that it‘s limited by the size of
your display, so you may not see all the glocks.
- -D
-
Omit DLM status. This may be used to reduce the amount of output for
interactive mode.
- -n <iterations>
-
End the program after the specified number of iterations (reports). The
default is to keep running until interrupted.
- -r
-
Show resource group reservation information. Normally, glocktop omits
resource group reservation information to condense the output. This
information is only important when debugging information related to the
GFS2 block allocator and file system fragmentation.
- -s <freq>
-
Print glock summary information every <freq> reports.
The glock summary information is bulky and often not needed, so it‘s
only printed once every 10 reports. You can eliminate it entirely from
the output by specifying a value of 0. If you want the statistics to
print after every report, specify freq as 1.
- -t
-
Trace directory path. A lot of GFS2 glock performance problems are caused
by an application‘s contention for one or two directories. These show up
as regular inodes in the output, but there‘s no good way to tell from the
output which directory is contended. Ordinarily, glocktop won‘t try to
look up the full pathname of a contended directory because it‘s slow,
especially if there are millions of glocks. This option instructs glocktop
to try to determine the full directory path names when it can, so you can
tell the full path (within the mount point) of contended directories.
- -H
-
Don‘t show Held glocks, unless there are also waiters for the lock.
Ordinarily, glocktop will show glocks that are held (but not iopen
glocks which are almost always held by the thousands) as well as glocks
for which there are waiters. If it only showed glocks with waiters, you
could see, for example, that a glock is being blocked on one node,
but you couldn‘t see the information for a different node currently
holding the lock and thus, blocking the waiter. This option forces glocktop to
stop printing information for glocks with no waiters (on that node).
The advantage is that the output is smaller and easier to look at.
The disadvantage is that you can‘t see information from the node that‘s
blocking the waiter, unless both waiter and holder are on the same node.
OUTPUT LINES
- @ name
-
This is the GFS2 file system name for which the information is printed. It
also gives the time stamp of the report, and the cluster node name.
- G:
-
This line represents a glock (internode GFS2 lock).
G: s:UN n:2/609b4 f:lIqob t:EX d:EX/0 a:0 v:0 r:3 m:200 (inode)
- D:
-
This line gives you glocktop‘s interpretation of the glock‘s state as
far as DLM (distributed lock manager) is concerned.
D: Granted PR on node 2 to pid 17511 [python]
- H:
-
This line represents a glock holder: a process that‘s either holding the
glock, or is waiting to hold it. The value after S: represents how this
holder needs the lock: EX (Exclusive), SH (Shared), PR (Protected Read),
or UN (Unlocked). The value after F: indicates the holder flags: a W
indicates the holder is Waiting for the lock to be granted. An H indicates
the holder is currently holding the lock.
H: s:EX f:W e:0 p:17511 [python] gfs2_unlink+0x7e/0x250 [gfs2]
- U:
-
These lines represent glocktop‘s user interpretation of the data, both glock
and holder. Lines that begin with (N/A:...) can probably be ignored because
they ought to be unimportant: system files such as journals, etc.
U: W inode 183f5 Is:Shared, Want:Exclusive [Demote pending, Reply pending, Queued, Blocking]
U: W ---> waiting pid 17511 [python] (Granted PR on node 2 to pid 17511 [python])
- C:
-
These lines give you the call trace (call stack) of the process that‘s
either holding or waiting to hold the glock.
- S
-
These lines give you the summary of all glocks for this file system: How many of
each category are unlocked, locked, how many are held in EX, SH, and DF, and how
many are waiting. G Waiting is how many glocks have waiters. P Waiting is
how many processes are waiting. Thus, you could have one glock that‘s got
ten processes waiting, or ten glocks that have ten processes waiting.
EXAMPLE OUTPUT