io_global_by_wait_by_bytes and x$io_global_by_wait_by_bytes Sys Schema Views

These views summarize global I/O consumers by event name, displaying total bytes read and written to identify high-throughput events.

Sys Schema views are available from MariaDB 10.6.

Description

The io_global_by_wait_by_bytes and x$io_global_by_wait_by_bytes views summarize global I/O consumers, displaying amount of I/O and time waiting for I/O, grouped by event. Rows are sorted by descending total I/O (bytes read and written) by default.

The io_global_by_wait_by_bytes view is intended to be easier for human reading, while the x$io_global_by_wait_by_bytes 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 I/O events for the file.

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?