When using phpMyAdmin or the MySQL GUI Tools, whenever I create an InnoDB table, it adds a comment to the table like this:
InnoDB free: 9216 kB
What does this mean? What's it used for?
When using phpMyAdmin or the MySQL GUI Tools, whenever I create an InnoDB table, it adds a comment to the table like this:
InnoDB free: 9216 kB
What does this mean? What's it used for?
InnoDB stores many tables per file. Inside that InnoDB data file, there can be free space:
The comment is just telling you how much free space is in your InnoDB datafile(s). When that approaches 0, InnoDB will expand the data file.
I believe the default allocation block is 10MB, so that's probably why you have almost 10MB free.