My database contains three tables, having 50k, 50k and 5m rows. All of them are InnoDB. (largest one contains varchar[256]). The size of my database is 214MB, which I got by querying information_schema.TABLES (I guess this gives the size of data+index on disk?)
I had 1.5GB of RAM and I thought I'll convert the engine of all tables to MEMORY. But when I started converting the largest table, I got 1114 error.
After some research, I found that max_heap_table_size as only 16MB. So, I set the max_heap_table_size and tmp_table_size to 1GB.
When I tried converting again, I saw the memory usage of mysqld.exe process go beyond 1.2GB and then it threw same error again before even converting half the rows! I removed half the rows from the largest table and it finally fit in - at 700MB in memory!!
Why is a database that is 214MB, not even able to fit in more than 4 times the memory?
Is there anything else inside the process that is eating up the memory other than the data+index?
Machine: Intel P4 - 1.9GHz, 1.5GB RAM, Win7 Ultimate.
topand/orhtopto see what's using your RAM. Are you running on shared hosting, or a VPS? – Bojangles Sep 27 '12 at 20:06