- November 15, 2007 5:28 PM
ほとんどこちらから引用
http://www.mysqlperformanceblog.com/2006/07/17/show-innodb-status-walk-through/
History list length
History list length is number of unpurged transactions in undo space. It is increased as transactions which have done updates are commited and decreased as purge runs.
InnoDBのバージョニングにおいて、過去のバージョンを管理するヒストリーの長さ
InnoDB Buffer Poolにはあるが、未だibdata fileには無いUndo Logの数
lock structs in row lock hash table
Total number of lock structs in row lock hash table is number of row lock structures allocated by all transactions. Note not same as number of locked rows - there are normally many rows for each lock structure.
ロックストラクチャの数
ロックの数ではない
inserts
merged rec
インサートバッファ内に挿入されたデータの数
インサートバッファ内で既に(セカンダリインデックスなどに)反映されているデータの数
hash searches/s
non-hash searches/s
Adaptive Hash Indexが使われた数
Adaptive Hash Indexが使われていない数
log i/o's/second
1秒あたりLog Bufferからib_logfilesへの書き込みが行われた回数
Free buffers
Modified db pages
InnoDB Buffer Poolでまだ利用されていないページ数
InnoDB Buffer Poolでib_dataファイルに反映していないデータの数
Pages read
Pages created
Pages written
InnoDB Buffer Poolの活動状況(ページ単位)
inserts
updates
deletes
reads
実際にどれくらいのデータ/行数が1秒あたりINSERT/UPDATE/DELETE/SELECTされたか。