]> git.proxmox.com Git - mirror_zfs.git/commit - module/zfs/spa_misc.c
Add visibility in to arc_read
authorPrakash Surya <surya1@llnl.gov>
Fri, 6 Sep 2013 23:09:05 +0000 (16:09 -0700)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Fri, 25 Oct 2013 20:57:25 +0000 (13:57 -0700)
commit1421c89142376bfd41e4de22ed7c7846b9e41f95
treebc5b9d92faa233d5fd91a1a44cf3c2a173aba106
parent76463d4026e0fa4b3d7b96acd58cb5fb79c49af7
Add visibility in to arc_read

This change is an attempt to add visibility into the arc_read calls
occurring on a system, in real time. To do this, a list was added to the
in memory SPA data structure for a pool, with each element on the list
corresponding to a call to arc_read. These entries are then exported
through the kstat interface, which can then be interpreted in userspace.

For each arc_read call, the following information is exported:

 * A unique identifier (uint64_t)
 * The time the entry was added to the list (hrtime_t)
   (*not* wall clock time; relative to the other entries on the list)
 * The objset ID (uint64_t)
 * The object number (uint64_t)
 * The indirection level (uint64_t)
 * The block ID (uint64_t)
 * The name of the function originating the arc_read call (char[24])
 * The arc_flags from the arc_read call (uint32_t)
 * The PID of the reading thread (pid_t)
 * The command or name of thread originating read (char[16])

From this exported information one can see, in real time, exactly what
is being read, what function is generating the read, and whether or not
the read was found to be already cached.

There is still some work to be done, but this should serve as a good
starting point.

Specifically, dbuf_read's are not accounted for in the currently
exported information. Thus, a follow up patch should probably be added
to export these calls that never call into arc_read (they only hit the
dbuf hash table). In addition, it might be nice to create a utility
similar to "arcstat.py" to digest the exported information and display
it in a more readable format. Or perhaps, log the information and allow
for it to be "replayed" at a later time.

Signed-off-by: Prakash Surya <surya1@llnl.gov>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
include/sys/spa.h
include/sys/spa_impl.h
include/sys/zfs_context.h
include/sys/zio.h
lib/libzpool/Makefile.am
lib/libzpool/kernel.c
module/zfs/Makefile.in
module/zfs/arc.c
module/zfs/dmu_traverse.c
module/zfs/spa_misc.c
module/zfs/spa_stats.c [new file with mode: 0644]