I have a buffing problem with an InnoDB table that I cannot figure out:

  • I have a table with 5 columns, of which 4 columns make up the primary key and there are 3 more secondary keys; in that table bulk inserts take very long time - up to 400 sec for 100,000 records (that is just 250 records/sec)
  • If all secondary indexes are dropped, the inserts are very fast - 20 sec for 100,000 records (5000 records/sec or 20 times faster)
  • If I add back even one secondary key, on a single bigint user-id column which is also a part of the primary key (I often need to search for the data of specific users), the inserts immediately become 3-4 times slower.

What is going on here? I suspect the answer is in the way InnoDB stores indexes, but after a lot of reading, I can't figure it out. What's weirdest of all is that the same table, with all the indexes added, with MyISAM engine always works at 5000 records/sec.

link|improve this question
Should have also said that none of the secondary indexes is "unique", so there are no unique indexes neither foreign keys, nothing that could have obviously slowed things down that much – Yuriy M Oct 30 '11 at 17:26
feedback

1 Answer

I don't know why. But the MySQL website provides a performance tuning tip for inserting into InnoDB with secondary keys (which implies to me that this is just the way it is and you have to deal with it): "If you have UNIQUE constraints on secondary keys, you can speed up table imports by temporarily turning off the uniqueness checks during the import session..."

link|improve this answer
Thanks, should have mentioned though that there are no unique constraints neither any foreign keys in the table, so this MySQL advise didn't really do any help -- had seen it before – Yuriy M Oct 30 '11 at 17:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.