標籤:access flush memory mys ota 引擎 print mem engine
一、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 00.00 youngs/s, 0.00 non-youngs/sPages read 345, created 35, written 370.00 reads/s, 0.00 creates/s, 0.00 writes/sNo buffer pool page gets since the last printoutPages read ahead 0.00/s, evicted without access 0.00/s, Random read ahead 0.00/sLRU len: 380, unzip_LRU len: 0I/O sum[0]:cur[0], unzip sum[0]:cur[0]
----
未完... ...
mysql-5.7 show engine innodb status 詳解