MySQL SHOW STATUS语句的使用

做mysql性能调整和服务状态监控,有个前提就是我们要知道当前mysql的运行状态. 很对开发人员对分库分表,读写分离,sql性能分析等或多或少有看过一些文章分析,但是如果不结合实际的mysql运行状态盲目的做一些mysql配置调整是一种大致加估计的做法,可能恰好切合了当前的实际问题有了性能提升,也有可能毫无作用. 所以,做技术还是要实际情况和理论结合,不能纸上谈兵.

本文参考mysql官方文档:

实操

查看可以监控的变量指标

我们可以使用语句show [global | session] status 来看全局/当前会话的可查看状态指标

比如我们要看mysql全局状态指标有那些可以使用

mysql> show global status;

+-----------------------------------+------------+
| variable_name           | value   |
+-----------------------------------+------------+
| aborted_clients          | 0     |
| aborted_connects         | 0     |
| bytes_received          | 155372598 |
| bytes_sent            | 1176560426 |
...
| connections            | 30023   |
| created_tmp_disk_tables      | 0     |
| created_tmp_files         | 3     |
| created_tmp_tables        | 2     |
...
| threads_created          | 217    |
| threads_running          | 88     |
| uptime              | 1389872  |
+-----------------------------------+------------+

如果你只对当前你自己的连接感兴趣那么可以使用show session status

其中如果你想刷新状态变量的统计信息可以使用命令flush status

many status variables are reset to 0 by the flush status statement.

一些关键的指标查询

依据上文查出的可以查询的状态变量,我选择几个变量做一些演示

查询mysql运行的时间:

mysql> show status like 'uptime';
+---------------+--------+
| variable_name | value |
+---------------+--------+
| uptime    | 398545 |
+---------------+--------+
1 row in set (0.01 sec)

查询mysql的select执行次数

mysql> show global status like 'com_select';
+---------------+-------+
| variable_name | value |
+---------------+-------+
| com_select  | 19  |
+---------------+-------+
1 row in set (0.01 sec)

查询mysql的insert执行次数

mysql> show status like 'com_insert';
+---------------+-------+
| variable_name | value |
+---------------+-------+
| com_insert  | 0   |
+---------------+-------+
1 row in set (0.00 sec)

查询mysql的update执行次数

mysql> show status like 'com_update';
+---------------+-------+
| variable_name | value |
+---------------+-------+
| com_update  | 0   |
+---------------+-------+
1 row in set (0.00 sec)

查询mysql的delete执行次数

mysql> show status like 'com_delete';
+---------------+-------+
| variable_name | value |
+---------------+-------+
| com_delete  | 0   |
+---------------+-------+
1 row in set (0.00 sec)

上面的crud次数统计,可以直接的作为实际mysql性能优化的依据.比如根据读写的比例来调整内存分配策略.

查询连接次数

mysql> show status like 'connections';
+---------------+-------+
| variable_name | value |
+---------------+-------+
| connections  | 286  |
+---------------+-------+
1 row in set (0.00 sec)

查询慢查询次数

mysql> show status like 'slow_queries';
+---------------+-------+
| variable_name | value |
+---------------+-------+
| slow_queries | 0   |
+---------------+-------+
1 row in set (0.00 sec)

查询慢查询时间(默认10秒)

mysql> show variables like 'long_query_time';
+-----------------+-----------+
| variable_name  | value   |
+-----------------+-----------+
| long_query_time | 10.000000 |
+-----------------+-----------+
1 row in set (0.01 sec)

其实指标有很多,当遇到实际问题后可以针对性的进行查询然后依据这些数据做mysql参数调整.

以上就是mysql show status语句的使用的详细内容,更多关于mysql show status的资料请关注www.887551.com其它相关文章!

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐