I have had some experience with optimizing the my.cnf file but my database has around 4 million records (MyISAM). I am trying to restore from a mysqldump but every time I do I eventually get the dreaded "Repair With Keycache", that may take days. Is there any way to get past this and let it roll as "Repair By Sorting"?

I have 2GB RAM, Dual Cores, lots of extra hard-drive space.

Snip out of my.cnf:

set-variable = max_connections=650
set-variable = key_buffer=256M
set-variable = myisam_sort_buffer_size=64M
set-variable = join_buffer=1M
set-variable = record_buffer=1M
set-variable = sort_buffer_size=2M
set-variable = read_buffer_size=2M
set-variable = query_cache_size=32M
set-variable = table_cache=1024
set-variable = thread_cache_size=256
set-variable = wait_timeout=7200
set-variable = connect_timeout=10
set-variable = max_allowed_packet=16M
set-variable = max_connect_errors=10
set-variable = thread_concurrency=8
link|improve this question

58% accept rate
You should accept MarkR's answer. – Sonny Nov 24 '10 at 22:04
feedback

3 Answers

"Repair by sorting" uses the filesort routine, which in turn creates several temporary files (usually) in your tmpdir.

If your tmpdir does not have enough space for them, it will revert to "Repair by keycache". This is extremely bad as it's much slower AND creates less optimal indexes.

There are some other conditions but I haven't identified them.

Working out the size of tmpdir you need for filesort() is nontrivial; the format data are stored in the filesort buffer is not the same as MYD files, it typically uses a lot more space.

So if your tmpdir points at a small /tmp (or tmpfs), you might want to change it to a larger /var/tmp - if that exists.

link|improve this answer
Most important condition - myisam_max_sort_file_size variable. I'm has enough free disk space, but always run 'Repair by keycache', and only when set myisam_max_sort_file_size to 10G, get a 'Repair by sort', which is four to five times faster then 'Repair by keycache' on my data. Thnx to @Marc-Gear – Alexey Sviridov Dec 5 '11 at 9:19
feedback

MySQL will use repair by keycache for MyISAM tables whenever the maximum possible size of the tables indexes are greater than the value for the variable myisam_max_sort_file_size.

You can calculate the maximum size of the index by adding up the byte size values for all keys in all the indexes and multiplying that by the number of rows in your table.

Increase the myisam_max_sort_file_size and your index will be rebuilt using sorting on disk, rather than with the slow keycache method.

link|improve this answer
I'm using RHEL5 w/ MySQL w/ minor tweaks of my.cnf, importing of one db takes 15h, importing same db to CentOS5 (on much newer machine w/ different my.cnf) takes about 1.5h, I'm going try your myisam_max_sort_file_size as now it set to 2G, and my table is 5G, I do have planty of space... I can't wait to try it out! – alexus Mar 5 '11 at 23:22
I just set myisam_max_sort_file_size to 8G in my my.cnf, yet I still seeing "Repair with keycache" my "tmpdir" points to /tmp folder, which has about 90G free space, I don't really see mysqld using it at all... any ideas why? I checked permissions everything looks Ok. – alexus Mar 6 '11 at 1:35
How many rows does your table have? and indexes does it have (over what size rows). To rebuild 4 Gb table, I needed it set to about 15gb (it didn't use anywhere near this much) – Marc Gear Apr 21 '11 at 19:59
Great! Save my day. – Alexey Sviridov Dec 5 '11 at 9:33
feedback

Thanks Mark, Yes that is exactly what I ended up trying and am seeing from the logs that that's the reason it switched to "Repair with keycache", was an out of space error.

This is what I did to get my solution in place as I will not go through the fact that it was pointing to /tmp/mysqltmp/, which only had a max of 2MB.

So I did this:

mkdir /home/mysqltmp

chown mysql:mysql /home/mysqltmp

changed my tmp dir in my.conf to tmpdir=/home/mysqltmp/

Now if I use df -h /home/mysqltmp, what I see is that dir has 285 GB available, so that really was a nice sight to see, had plenty of free space, plus I could see mysql was wanting 20GB easily. So what was taking me 12 hours before now is complete in 20 minutes, that is over 3 million records insert to index.

link|improve this answer
One thing don't forget to restart mysql after you change my.conf, this is how I do a mysql restart in Apache RedHat: service mysqld restart – dvancouver Jul 1 '09 at 7:11
This should be an update on your question, rather than an answer. – Sonny Nov 24 '10 at 22:05
feedback

Your Answer

 
or
required, but never shown

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