mysql 5.7 内存使用监控

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 5.7 内存使用监控相关的知识,希望对你有一定的参考价值。

5.7 中的performance_schema 已经有能力监控mysql 的内存使用情况了,对于这一点也是要通过instrument 来实现的,由于内存这一块没有对应的consumer 所以只要

配置好instrument 就行了

 

1、例子:

/etc/my.cnf

[mysqld]
datadir                                    =/usr/local/mysql/data
basedir                                    =/usr/local/mysql
performance_schema_instrument              =memory%=counted

 

select event_name,current_alloc from sys.memory_global_by_current_bytes limit 10;
+-----------------------------------------------------------------------------+---------------+
| event_name                                                                  | current_alloc |
+-----------------------------------------------------------------------------+---------------+
| memory/innodb/buf_buf_pool                                                  | 131.06 MiB    |
| memory/innodb/log0log                                                       | 32.01 MiB     |
| memory/performance_schema/events_statements_history_long                    | 13.66 MiB     |
| memory/performance_schema/events_statements_history_long.sqltext            | 9.77 MiB      |
| memory/performance_schema/events_statements_history_long.tokens             | 9.77 MiB      |
| memory/performance_schema/events_statements_summary_by_digest.tokens        | 9.77 MiB      |
| memory/performance_schema/table_handles                                     | 9.06 MiB      |
| memory/performance_schema/events_statements_summary_by_thread_by_event_name | 8.67 MiB      |
| memory/mysys/KEY_CACHE                                                      | 8.00 MiB      |
| memory/performance_schema/memory_summary_by_thread_by_event_name            | 5.62 MiB      |
+-----------------------------------------------------------------------------+---------------+

以上是关于mysql 5.7 内存使用监控的主要内容,如果未能解决你的问题,请参考以下文章

MySQL- 5.7 sys schema

Mysql 5.7服务开启之后,占内存过多,怎么减小?

Mysql 5.7 进程显示运行时间长,内存交换量大

mysql 5.7 innodb memcached plugin 支持内存数据库

mysql-5.7 show engine innodb status 详解

mysql-5.7 saving and restore buffer pool state 详解