I need to create an index on a ~5M rows mysql table. It is a production table, i fear a complete block of everything if I run a CREATE INDEX statement...

Is there a way to create that index without blocking inserts and selects ?

Just wondering I have not to stop, create index and restart my system!

Thank you :)

link|improve this question

80% accept rate
make sure your myisam_sort_buffer_size and myisam_max_sort_file_size are large enough. – f00 Nov 22 '10 at 12:20
feedback

1 Answer

up vote 2 down vote accepted

If your using a version greater than 5.1 indices are created while the database is online. So not to worry you won't interrupt production system use.

See the following mysql ticket for reference.

Beginning with MySQL 5.1.7, ADD INDEX and DROP INDEX operations are performed online when the indexes are on variable-width columns only. Source

link|improve this answer
VERSION() => 5.0.51a-24+lenny3-log ... i should upgrade :) – n0cturnal Nov 22 '10 at 11:08
There's your answer then =) Upgrade is really the only way you'll get that functionality. Either run with the upgrade or find a quiet time for the database and sneak it in. – JonVD Nov 22 '10 at 11:10
feedback

Your Answer

 
or
required, but never shown

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