一、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]