欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解分析MySQL8.0的内存消耗

程序员文章站 2022-06-27 15:39:53
在mysql8.0在启动的时候,会配置各种各样的buffer和cache来提高数据库的性能。如果我们在一台服务器上配置了mysql8.0的服务,那么这台服务器的内存会同时被操作系统、mysql8.0服...

  在mysql8.0在启动的时候,会配置各种各样的buffer和cache来提高数据库的性能。如果我们在一台服务器上配置了mysql8.0的服务,那么这台服务器的内存会同时被操作系统、mysql8.0服务、以及其他应用程序所共享。

   生产环境中,经常会遇到内存的报警,在处理这些报警之前,你需要知道mysql本身消耗内存最多的点在哪里,这样才能比较直观的判断出来你的mysql服务占用的内存有多少,以及如何降低mysql本身的内存消耗。

   在mysql配置文件中,最常用的两个内存相关的参数是innodb_buffer_pool_size、innodb_log_buffer_size,我们来看这两个参数。

1、innodb_buffer_pool_size

这个参数定义了buffer pool的大小,大家可能都比较熟悉,buffer pool中的内容包含innodb 表、索引、以及其他的辅助buffer,buffer pool的大小对mysql系统性能影响比较大,默认情况下,mysql8.0配置的buffer pool大小是128mb,通常情况下,如果是单机单实例,没有其他业务,那么mysql官方建议配置的大小为系统内存的50%到75%之间。当然,如果你的服务器上还部署了其他的应用程序,那么你需要酌情减小这个比例,从而腾出内存。

如果你的操作系统的内存很充裕,你可以设置多个innodb buffer pool实例,可以使用下面的参数来调整这个实例的个数:

mysql> show variables like '%innodb_buffer_pool_instances%';
+------------------------------+-------+
| variable_name    | value |
+------------------------------+-------+
| innodb_buffer_pool_instances | 1  |
+------------------------------+-------+
1 row in set (0.00 sec)

2、innodb_log_buffer_size

这个参数定义了innodb存储引擎向磁盘上写redo log之前,最多在内存中缓存数据的大小,默认是16mb。这个值增加之后,大的事务可以不用在事务提交之前将redo log落盘。如果你的update、delete和insert操作影响行数比较多,那么你需要考虑增大这个值。

重点来了:

在操作系统里面,mysql占用的内存不仅仅是上述两个内存配置参数有关,通常情况下,我们计算mysql占用的内存的时候,会使用下面4个值相加的方式:

1、innodb_buffer_pool_size

2、key_buffer_size  (这个参数通常是myisam表占用内存的关键参数)

3、max_connections*(sort_buffer_size+read_buffer_size+binlog_cache_size) (这三个是连接级别的buffer)

4、max_connections*2mb

所以当你使用top命令看到你的mysql占用的内存远远超过innodb_buffer_pool_size的时候,你需要考虑的另外一个关键因素是连接数是否超标了,一旦连接数过高,那么上述3、4这两部分消耗的内存将会非常多。

当然,上面列举的,是mysql最主要占用内存的几个因素,除此之外,其他的内存消耗的地方,可以查看官方文档:

上述文档中,还有介绍我们如何使用performance_schema来监控mysql的内存使用,这里我提一下整个流程,详细的细节以及参数介绍请参看官方文档。

1、查看

performance_schema.setup_instruments

这张表,找到你关注的内存变量的名称(直接搜索,结果有490多条,分为好几个大类,一定记得过滤自己关注的参数)。举个例子,我们搜索memory/innodb相关参数,代表innodb存储引擎占用的内存,结果如下:

mysql> select * from performance_schema.setup_instruments  where name like '%memory/innodb%';
+-------------------------------------------+---------+-------+-------------------+------------+---------------+
| name          | enabled | timed | properties  | volatility | documentation |
+-------------------------------------------+---------+-------+-------------------+------------+---------------+
| memory/innodb/adaptive hash index   | yes  | null |     |   0 | null   |
| memory/innodb/log and page archiver  | yes  | null |     |   0 | null   |
| memory/innodb/buf_buf_pool    | yes  | null | global_statistics |   0 | null   |
| memory/innodb/buf_stat_per_index_t  | yes  | null |     |   0 | null   |
| memory/innodb/clone      | yes  | null |     |   0 | null   |
| memory/innodb/dict_stats_bg_recalc_pool_t | yes  | null |     |   0 | null   |
| memory/innodb/dict_stats_index_map_t  | yes  | null |     |   0 | null   |
| memory/innodb/dict_stats_n_diff_on_level | yes  | null |     |   0 | null   |
| memory/innodb/other      | yes  | null |     |   0 | null   |
| memory/innodb/partitioning    | yes  | null |     |   0 | null   |
| memory/innodb/row_log_buf     | yes  | null |     |   0 | null   |
| memory/innodb/row_merge_sort    | yes  | null |     |   0 | null   |
| memory/innodb/std       | yes  | null |     |   0 | null   |
| memory/innodb/trx_sys_t::rw_trx_ids  | yes  | null |     |   0 | null   |
| memory/innodb/undo::tablespaces   | yes  | null |     |   0 | null   |
| memory/innodb/ut_lock_free_hash_t   | yes  | null |     |   0 | null   |
| memory/innodb/api0api      | yes  | null |     |   0 | null   |
| memory/innodb/api0misc     | yes  | null |     |   0 | null   |
| memory/innodb/btr0btr      | yes  | null |     |   0 | null   |

2、在配置文件中写上相关的参数,开启统计,以memory/innodb/row_log_buf为例,配置文件修改的如下:

performance-schema-instrument='memory/innodb/row_log_buf=counted'

3、启动实例,并在performance_schema数据库的memory_summary_global_by_event_name表中查看内存统计结果。

select * from performance_schema.memory_summary_global_by_event_name where event_name like 'memory/innodb/row_log_buf'\g

当然,你还可以根据sys表中的结果,查看每个大类的聚合结果,如下:

mysql> select substring_index(event_name,'/',2) as
  code_area, format_bytes(sum(current_alloc))
  as current_alloc
  from sys.x$memory_global_by_current_bytes
  group by substring_index(event_name,'/',2)
  order by sum(current_alloc) desc;
+---------------------------+---------------+
| code_area     | current_alloc |
+---------------------------+---------------+
| memory/innodb    | 843.24 mib |
| memory/performance_schema | 81.29 mib  |
| memory/mysys    | 8.20 mib  |
| memory/sql    | 2.47 mib  |
| memory/memory    | 174.01 kib |
| memory/myisam    | 46.53 kib  |
| memory/blackhole   | 512 bytes  |
| memory/federated   | 512 bytes  |
| memory/csv    | 512 bytes  |
| memory/vio    | 496 bytes  |
+---------------------------+---------------+

更详细的信息,请参见官方文档。

以上就是详解分析mysql8.0的内存消耗的详细内容,更多关于mysql8.0 内存消耗的资料请关注其它相关文章!