I have a table with around 1 Billion rows, and its 98% read intensive.
I tried tuning the database, with different storage engines (MyISAM and InnoDB)
Then ran a few test to view the performance
In the where clause I had a primary key ID, and it seemd that since MyISAM Key Cache stores loads all the index in its buffer, using MyISAM seemed to be pretty fast, around 2 times faster than InnoDB
But for InnoDB, it seemd slower!! Is it that InnoDB does not use any buffer to pre-load the indexes?
Before you decide upon MyISAM or InnoDB you will have to look over both Storage Engines in terms of how what each caches
MyISAM
When read, a MyISAM table's indexes can be read once from the .MYI file and loaded in the MyISAM Key Cache (as sized by key_buffer_size). How can you make a MyISAM table's .MYD faster to read? With this:
I wrote about this in my past posts
Sep 20, 2011
: https://dba.stackexchange.com/questions/5974/best-of-myisam-and-innodb/6008#6008 (Please Read This One First)May 10, 2011
: https://dba.stackexchange.com/questions/2640/what-is-the-performance-impact-of-using-char-vs-varchar-on-a-fixed-size-field/2643#2643 (TRADEOFF #2)Aug 12, 2011
: https://dba.stackexchange.com/questions/4576/which-dbms-is-good-for-super-fast-reads-and-a-simple-data-structure/4589#4589 (Paragraph 3)Jan 03, 2012
: https://dba.stackexchange.com/questions/10069/optimized-my-cnf-for-high-end-and-busy-server/10080#10080 (Under the heading Replication)InnoDB
OK, what about InnoDB? Does InnoDB do any disk I/O for queries? Surprisingly, yes it does !! You are probably thinking I am crazy for saying that, but it is absolutely true, even for SELECT queries. At this point, you are probably wondering "How in the world is InnoDB doing disk I/O for queries?"
It all goes back to InnoDB being an ACID-complaint Transactional Storage Engine. In order for InnoDB to be Transactional, it has to support the
I
inACID
, which is Isolation. The technique for maintaining isolation for transactions is done via MVCC, Multiversion Concurrency Control. In simple terms, InnoDB records what data looks like before transactions attempt to change them. Where does that get recorded? In the system tablespace file, better known as ibdata1. That requires disk I/O.COMPARISON
Since both InnoDB and MyISAM do disk I/O, what random factors dictate who is faster?
DELETEs
andUPDATEs
EPILOGUE
Thus, in a heavy-read environment, it is possible for a MyISAM table with a Fixed Row Format to outperform InnoDB reads out of the InnoDB Buffer Pool if there is enough data being written into the undo logs contained within ibdata1 to support the transactional behavior imposed on the InnoDB data. Plan your data types, queries, and storage engine real carefully. Once the data grows, it might become very difficult to move data around.
By the way, I wrote something like this 5 days ago : How do I assign a memory limit for mySQL?
MyISAM will always run a lot faster than innodb when there is no contention for the data. Start adding multiple sessions trying to update the same tablse, and innodb very quickly gets the performance advantage.
How you tune the system for the 2 engines is very different.
The reason that different engines exist is because different workloads / access patterns exist.
you have to 'warm up' innodb. eg by re-playing access logs or running some smart queries that will touch each value from index.
take a look here or here.
i hope you dont use default mysql settings for innodb - they were suitable for hardware from ~2000.
Check this site, it has very useful information:
http://www.mysqlperformanceblog.com/2007/11/01/innodb-performance-optimization-basics/
http://www.mysqlperformanceblog.com/2007/11/03/choosing-innodb_buffer_pool_size/
You can also tune your file system. I have a good performance results on XFS with optimal sunit and swidth values (of course if you use RAID)
After further tuning InnoDB on MariaDB, I increased the
innodb_buffer_pool_size
to my InnoDB database size, since doing so, InnoDB has started fetching rows fasterI suppose tuning InnoDB is quite important according to your database needs