io_global_by_wait_by_latency and x$io_global_by_wait_by_latency Sys Schema Views

These views summarize global I/O consumers by event name, sorted by total latency, helping to pinpoint slow I/O event types.

Sys Schema views are available from MariaDB 10.6.

Description

The io_global_by_wait_by_latency and x$io_global_by_wait_by_latency views summarize global I/O consumers, displaying I/O and time waiting for I/O, grouped by event. Rows are sorted by descending total latency by default.

The io_global_by_wait_by_latency view is intended to be easier for human reading, while the x$io_global_by_wait_by_latency view provides the data in raw form, intended for tools that process the data.

They contain the following columns:

Column
Description

event_name

I/O event name. The wait/io/file prefix is stripped.

total

Total number of occurrences of the I/O event.

total_latency

Total wait time of timed occurrences of the I/O event.

min_latency

Minimum single wait time of timed occurrences of the I/O event.

avg_latency

Average wait time per timed occurrence of the I/O event.

max_latency

Maximum single wait time of timed occurrences of the I/O event.

count_read

Total number of read request for the I/O event.

total_read

Total number of bytes read for the I/O event.

avg_read

Average number of bytes per read for the I/O event.

count_write

Total number of write requests for the I/O event.

total_written

Number of bytes written for the I/O event.

avg_written

Average number of bytes per write for the I/O event.

total_requested

Total number of bytes (read and write) for the I/O event.

Example

This page is licensed: CC BY-SA / Gnu FDL

Last updated

Was this helpful?