mysql-5.7 show engine innodb status 详解
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql-5.7 show engine innodb status 详解相关的知识,希望对你有一定的参考价值。
一、show engine innodb status 简介:
show engine innodb status 是mysql提供的一个用于查看innodb引擎时间信息的工具,就目前来说有两处比较
常用的地方一、死锁分析 二、innodb内存使用情况
二、通过show engine innodb status 查看内存使用情况:
---------------------- BUFFER POOL AND MEMORY ---------------------- Total large memory allocated 274857984 # 为innodb 分配的总内存数(byte) Dictionary memory allocated 116177 #为innodb数据字典分配的内存数(byte) Buffer pool size 16384 #innodb_buffer_pool的大小(page) Free buffers 16004 #innodb_buffer_pool lru列表中的空闲页面数量 Database pages 380 #innodb_buffer_pool lru列表中的非空闲页面数 Old database pages 0 #innodb_buffer_pool old子列表的页面数量 Modified db pages 0 #innodb_buffer_pool 中脏页的数量 Pending reads 0 #挂起读的数量 Pending writes: LRU 0, flush list 0, single page 0 # Pages made young 0, not young 0 0.00 youngs/s, 0.00 non-youngs/s Pages read 345, created 35, written 37 0.00 reads/s, 0.00 creates/s, 0.00 writes/s No buffer pool page gets since the last printout Pages read ahead 0.00/s, evicted without access 0.00/s, Random read ahead 0.00/s LRU len: 380, unzip_LRU len: 0 I/O sum[0]:cur[0], unzip sum[0]:cur[0]
----
未完... ...
以上是关于mysql-5.7 show engine innodb status 详解的主要内容,如果未能解决你的问题,请参考以下文章