Where the open source database community meets: Use code PERCONA75 and secure your spot for Percona Live.  Register

How much memory Innodb Dictionary can take ?

May 6, 2010
Author
Peter Zaitsev
Share this Post:

The amount of memory Innodb will require for its data dictionary depends on amount of tables you have as well as number of fields and indexes. Innodb allocates this memory once table is accessed and keeps until server is shut down. In XtraDB we have an option to restrict that limit.

So how much memory can it really take ? Here is some production stats from real system:

In this case The memory stats from SHOW INNODB STATUS look like:

So considering about 700M were allocated for dictionary cache in this case we have about 15KB per Table or 1.5KB per Index. These numbers will change a lot depending on your table structure – This given schema had many tables with 50+ columns but I believe it can be helpful as ballpark figure.

Also note Dictionary Cache is not included in “Total Memory Allocated” in SHOW INNODB STATUS any more, as that allocations were moved to use malloc() and so Innodb does not track them any more.

0 0 votes
Article Rating
Subscribe
Notify of
guest

3 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Vadim
Admin
16 years ago

Peter,

did you open all
48246 tables ?

Dictionary cache shows only opened in memory tables.

Vivek
Vivek
16 years ago

MySQL Documentation says:

“Do not convert MySQL system tables in the mysql database from MyISAM to InnoDB tables! This is an unsupported operation.”
In my db when I run sql get below error:

mysql> SELECT count(*) FROM INNODB_SYS_TABLES;
ERROR 1146 (42S02): Table ‘test.INNODB_SYS_TABLES’ doesn’t exist

Far
Enough.

Said no pioneer ever.
MySQL, PostgreSQL, InnoDB, MariaDB, MongoDB and Kubernetes are trademarks for their respective owners.
© 2026 Percona All Rights Reserved