MySQL Forums
Forum List  »  Performance

Re: Slow insert rate in mysql innodb
Posted by: Rick James
Date: January 28, 2014 06:46PM

Need some more info to address your question:
SHOW TABLE STATUS LIKE 'tbl_name';
SHOW CREATE TABLE tbl_name;

Probably you have too many indexes for this high INSERT rate. Ordinary disks can handle only 100 updates per second. With the CREATE table, I will discuss why you are getting only 20x that, and what to do to get 30x. (If I can.)

How long will you save the data before purging it? I assume you will be doing DROP PARTITION?

Some flavors of VM have something like 30% overhead; the 100 I mentioned refers to standalone systems.

It sounds like you will be having a huge table (terabytes); shouldn't you consider a standalone mysql server?

RAID-5 on a hardware controller, with battery-backed-write-cache is a must for your situation.

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Slow insert rate in mysql innodb
2788
January 28, 2014 06:46PM
1787
January 30, 2014 08:31PM
2258
January 31, 2014 08:31PM
1512
February 07, 2014 11:00AM
1710
February 12, 2014 07:30PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.