By default MySQL InnoDB stores all tables of all DBs in one global file. You can change this by setting innodb_file_per_table in the config, which then creates one data file for each table.
I am wondering why innodb_file_per_table
is not enabled by default. Are there downsides to using it?
I have the complete answer for this one.
Once innodb_file_per_table is put in place, and new InnoDB tables can be shrunk using
ALTER TABLE <innodb-table-name> ENGINE=InnoDB';
This will shrink new.ibd
files GUARANTEED.If you run
ALTER TABLE <innodb-table-name> ENGINE=InnoDB';
on an InnoDB table created before you used innodb_file_per_table, it will yank the data and indexes for that table out of the ibdata1 file and store it in a.ibd
file, This will leave a permanent pigeon whole in the ibdata1 that can never be reused.The
ibdata1
file normally houses four types of informationPictorial Representation of ibdata1
Here is the guaranteed way to shrink the ibdata1 file pretty much forever...
STEP 01) MySQLDump all databases into a SQL text file (call it SQLData.sql)
STEP 02) Drop all databases (except mysql, information_schema and performance_schema schemas)
STEP 03) Shutdown mysql
STEP 04) Add the following lines to /etc/my.cnf
Sidenote: Whatever your set for innodb_buffer_pool_size, make sure innodb_log_file_size is 25% of innodb_buffer_pool_size.
At this point, there should only be the mysql schema in /var/lib/mysql
This will recreate ibdata1 at 10MB (do not configure the option) , ib_logfile0 and ib_logfile1 at 1G each
ibdata1
will grow but only contain table metadata and intermittent MVCC data.Each InnoDB table will exist outside of
ibdata1
Suppose you have an InnoDB table named mydb.mytable. If you go into
/var/lib/mysql/mydb
, you will see two files representing the tablemytable.frm
(Storage Engine Header)mytable.ibd
(Home of Table Data and Table Indexes formydb.mytable
)ibdata1
will never contain InnoDB data and Indexes anymore.With the innodb_file_per_table option in
/etc/my.cnf
, you can runOPTIMIZE TABLE mydb.mytable
ORALTER TABLE mydb.mytable ENGINE=InnoDB;
and the file/var/lib/mysql/mydb/mytable.ibd
will actually shrink.I have done this numerous times in my career as a MySQL DBA without so much as a single problem thereafter. In fact, the first time I did this, I collapsed a 50GB ibdata1 file into 50MB.
Give it a try. If you have further questions on this, email me. Trust me. This will work in the short term and over the long haul.
UPDATE 2013-07-02 15:08 EDT
There is a caveat I have in this regard that I updated in other posts of mine but I missed this: I am updating my answer a little more with innodb_fast_shutdown because I used to restart mysql and stop mysql to do this. Now, this one-step is vital because every transaction uncommitted may have other moving parts within and outside of the InnoDB Transaction Logs (See InnoDB Infrastructure).
Please note that setting innodb_fast_shutdown to 2 would clean the logs out as well but more moving parts still exist and gets picked on Crash Recovery during mysqld's startup. Setting of 0 is best.
See bug.
I always use innodb_file_per_table on large databases.
innodb_file_per_table is enabled by default in MariaDB.
The reason that I opted to not use
innodb_file_per_table
, is because each table is put in its own file, which means each table gets its own, separate overhead (file-signatures, etc.) which causes the total, overall size of theMySQL
directory to be larger than if using a shared tablespace. In addition, there is more wasted space due to cluster-slack when having multiple, small files instead of a single, large one.Granted, the additional overhead is not a massive amount in the grand scheme of things, especially if you are using a large drive or have a giant database, but for myself (and probably many “home-users”), it all added up and was still too much for the little drive with large clusters where I was keeping my MySQL store.
For example, my database store with my WordPress databases and a few other small databases (phpBB, dev, some AMP tests, etc.), converting to per-table changed it from 32MB to 50MB, and that is not even including the
ibdata1
which still requires a minimum of 10MB, for a total of at least 60MB.Like I said, this may not be too much of a problem for some people, especially enterprises, but if you are a home-user that is only hosting your site, blog, etc. then it can indeed be a factor in things like choosing a host provider because many hosts limit the size of your database in addition to total disk-usage.
Just to add a bit more info
Since mysql 5.6.6 its enabled by default
with innodb_file_per_table=1, drop table can get slower see Here