Information Schema INNODB_BUFFER_POOL_PAGES_INDEX Table

The Information Schema INNODB_BUFFER_POOL_PAGES table is a Percona enhancement, and is only available for XtraDB, not InnoDB (see XtraDB and InnoDB). It contains information about buffer pool index pages.

It has the following columns:

ColumnDescription
INDEX_IDIndex name
SPACE_IDTablespace ID
PAGE_NOPage offset within tablespace.
N_RECSNumber of user records on the page.
DATA_SIZETotal data size in bytes of records in the page.
HASHED1 if the block is in the adaptive hash index, 0 if not.
ACCESS_TIMEPage's last access time.
MODIFIED1 if the page has been modified since being loaded, 0 if not.
DIRTY1 if the page has been modified since it was last flushed, 0 if not
OLD1 if the page in the in the old blocks of the LRU (least-recently-used) list, 0 if not.
LRU_POSITIONPosition in the LRU (least-recently-used) list.
FIX_COUNTPage reference count, incremented each time the page is accessed. 0 if the page is not currently being accessed.
FLUSH_TYPEFlush type of the most recent flush.0 (LRU), 2 (flush_list)

Comments

Comments loading...
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.