MySQL 8.4 发行说明
- 30.4.3.1 host_summary 和 x$host_summary 视图
- 30.4.3.2 host_summary_by_file_io 和 x$host_summary_by_file_io 视图
- 30.4.3.3 host_summary_by_file_io_type 和 x$host_summary_by_file_io_type 视图
- 30.4.3.4 host_summary_by_stages 和 x$host_summary_by_stages 视图
- 30.4.3.5 host_summary_by_statement_latency 和 x$host_summary_by_statement_latency 视图
- 30.4.3.6 host_summary_by_statement_type 和 x$host_summary_by_statement_type 视图
- 30.4.3.7 innodb_buffer_stats_by_schema 和 x$innodb_buffer_stats_by_schema 视图
- 30.4.3.8 innodb_buffer_stats_by_table 和 x$innodb_buffer_stats_by_table 视图
- 30.4.3.9 innodb_lock_waits 和 x$innodb_lock_waits 视图
- 30.4.3.10 io_by_thread_by_latency 和 x$io_by_thread_by_latency 视图
- 30.4.3.11 io_global_by_file_by_bytes 和 x$io_global_by_file_by_bytes 视图
- 30.4.3.12 io_global_by_file_by_latency 和 x$io_global_by_file_by_latency 视图
- 30.4.3.13 io_global_by_wait_by_bytes 和 x$io_global_by_wait_by_bytes 视图
- 30.4.3.14 io_global_by_wait_by_latency 和 x$io_global_by_wait_by_latency 视图
- 30.4.3.15 latest_file_io 和 x$latest_file_io 视图
- 30.4.3.16 memory_by_host_by_current_bytes 和 x$memory_by_host_by_current_bytes 视图
- 30.4.3.17 memory_by_thread_by_current_bytes 和 x$memory_by_thread_by_current_bytes 视图
- 30.4.3.18 memory_by_user_by_current_bytes 和 x$memory_by_user_by_current_bytes 视图
- 30.4.3.19 memory_global_by_current_bytes 和 x$memory_global_by_current_bytes 视图
- 30.4.3.20 memory_global_total 和 x$memory_global_total 视图
- 30.4.3.21 metrics 视图
- 30.4.3.22 processlist 和 x$processlist 视图
- 30.4.3.23 ps_check_lost_instrumentation 视图
- 30.4.3.24 schema_auto_increment_columns 视图
- 30.4.3.25 schema_index_statistics 和 x$schema_index_statistics 视图
- 30.4.3.26 schema_object_overview 视图
- 30.4.3.27 schema_redundant_indexes 和 x$schema_flattened_keys 视图
- 30.4.3.28 schema_table_lock_waits 和 x$schema_table_lock_waits 视图
- 30.4.3.29 schema_table_statistics 和 x$schema_table_statistics 视图
- 30.4.3.30 schema_table_statistics_with_buffer 和 x$schema_table_statistics_with_buffer 视图
- 30.4.3.31 schema_tables_with_full_table_scans 和 x$schema_tables_with_full_table_scans 视图
- 30.4.3.32 schema_unused_indexes 视图
- 30.4.3.33 session 和 x$session 视图
- 30.4.3.34 session_ssl_status 视图
- 30.4.3.35 statement_analysis 和 x$statement_analysis 视图
- 30.4.3.36 statements_with_errors_or_warnings 和 x$statements_with_errors_or_warnings 视图
- 30.4.3.37 statements_with_full_table_scans 和 x$statements_with_full_table_scans 视图
- 30.4.3.38 statements_with_runtimes_in_95th_percentile 和 x$statements_with_runtimes_in_95th_percentile 视图
- 30.4.3.39 statements_with_sorting 和 x$statements_with_sorting 视图
- 30.4.3.40 statements_with_temp_tables 和 x$statements_with_temp_tables 视图
- 30.4.3.41 user_summary 和 x$user_summary 视图
- 30.4.3.42 user_summary_by_file_io 和 x$user_summary_by_file_io 视图
- 30.4.3.43 user_summary_by_file_io_type 和 x$user_summary_by_file_io_type 视图
- 30.4.3.44 user_summary_by_stages 和 x$user_summary_by_stages 视图
- 30.4.3.45 user_summary_by_statement_latency 和 x$user_summary_by_statement_latency 视图
- 30.4.3.46 user_summary_by_statement_type 和 x$user_summary_by_statement_type 视图
- 30.4.3.47 version 视图
- 30.4.3.48 wait_classes_global_by_avg_latency 和 x$wait_classes_global_by_avg_latency 视图
- 30.4.3.49 wait_classes_global_by_latency 和 x$wait_classes_global_by_latency 视图
- 30.4.3.50 waits_by_host_by_latency 和 x$waits_by_host_by_latency 视图
- 30.4.3.51 waits_by_user_by_latency 和 x$waits_by_user_by_latency 视图
- 30.4.3.52 waits_global_by_latency 和 x$waits_global_by_latency 视图
以下部分介绍 sys
架构视图。
sys
架构包含许多视图,以各种方式汇总性能架构表。这些视图大多数成对出现,其中一对中的一个成员与另一个成员同名,并带有一个 x$
前缀。例如,host_summary_by_file_io
视图汇总按主机分组的文件 I/O,并显示从皮秒转换为更易读的值(带单位)的延迟;
mysql> SELECT * FROM sys.host_summary_by_file_io;
+------------+-------+------------+
| host | ios | io_latency |
+------------+-------+------------+
| localhost | 67570 | 5.38 s |
| background | 3468 | 4.18 s |
+------------+-------+------------+
x$host_summary_by_file_io
视图汇总相同的数据,但显示未格式化的皮秒延迟
mysql> SELECT * FROM sys.x$host_summary_by_file_io;
+------------+-------+---------------+
| host | ios | io_latency |
+------------+-------+---------------+
| localhost | 67574 | 5380678125144 |
| background | 3474 | 4758696829416 |
+------------+-------+---------------+
没有 x$
前缀的视图旨在提供更人性化、更易读的输出。带有 x$
前缀的视图显示相同的值的原始形式,旨在更多地与执行其自身数据处理的其他工具一起使用。
没有 x$
前缀的视图与相应的 x$
视图的不同之处在于:
字节计数使用
format_bytes()
函数以大小单位格式化。时间值使用
format_time()
函数以时间单位格式化。SQL 语句使用
format_statement()
函数截断为最大显示宽度。路径名使用
format_path()
函数缩短。