Is it possible to clean a mysql innodb storage engine so it is not storing data from deleted tables?
Or do I have to rebuild a fresh database every time?
|
|
Here is a more complete answer with regard to InnoDB. It is a bit of a lengthy process, but can be worth the effort. Keep in mind that
Many people create multiple Can I run
|
|
I've also used the innodb_file_per_table option to great effect, having 200 databases with 200 tables each on a single server, I was able to symlink difference databases onto different partitions, therefore using more IO buffers and spindles that would otherwise have been available :) – Dave Rix Oct 6 '11 at 13:40 |
||
|
@SeanDowney BTW remember to raise innodb_open_tables if necessary. The default is 300. – RolandoMySQLDBA May 11 '12 at 20:36 |
||
|
@giorgio79 you need to set your bulk insert to a larger value. This is a good point. I will add the essence of your question to my answer. – RolandoMySQLDBA May 30 '12 at 0:41 |
||
|
Very late comment, I know, but in the steps above it seems that also mysql-database (where e.g. users are defined) should be deleted. How can I then import again when no users are defined? – 244an Jan 19 at 19:57 |
||
|
In 32 bits systems a 4Gb value for innodb_buffer_pool_size is not allowed. Mysql will silently start with innodb disabled and the tables restored will be changed to myisam. Use a slightly smaller value to fix it. – David Jan 30 at 13:13 |
|
FYI, after much head scratching I've just found out O_DIRECT can't be used on Windows. "On Windows, the flush method is always async_unbuffered and cannot be changed" From: http://dev.mysql.com/doc/refman/5.0/en/innodb-parameters.html#sysvar_innodb_flush_method |
|||
|
|
|
The InnoDB engine does not store deleted data. As you insert and delete rows, unused space is left allocated within the InnoDB storage files. Over time, the overall space will not decrease, but over time the 'deleted and freed' space will be automatically reused by the DB server. You can further tune and manage the space used by the engine through an manual re-org of the tables. To do this, dump the data in the affected tables using mysqldump, drop the tables, restart the mysql service, and then recreate the tables from the dump files. |
|||
|
|
|
You can use OPTIMIZE TABLE query periodically to optimize your storage and speed up SELECT queries a little. Link to MySQL Manual: http://dev.mysql.com/doc/refman/5.1/en/optimize-table.html |
|||
|
|