MySQL Forums
Forum List  »  MyISAM

Re: How to enable index fast in MyISAM table
Posted by: Rick James
Date: March 20, 2014 06:33PM

> I do have thousands of queries during busy hour.

So, only a few per second? MyISAM can usually handle hundreds, maybe thousands, of _simple_ queries per second.

MyISAM locks the entire table whenever a write happens. InnoDB does not.

> I do see table lock issue in the slow log and want to fix that.

That implies finding ways to speed up the slow queries.

> I tried adding date to it to prune partition. However, it is slower than no pruning. Hence I removed the "date=xx" criteria.

Strange. Could you show us the exact SELECTs you tried, together with EXPLAIN PARTITIONS SELECT... for each.

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: How to enable index fast in MyISAM table
1718
March 20, 2014 06:33PM


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.