Hi!
"Weslee" == Weslee Bilodeau <sha...@sell.com> writes:
Just a note (I assume Sasha will give a longer answer :)
<cut>
Weslee> And out of curiosity - Would it be possible to have a 'FLUSH TABLES WITH
Weslee> WRITE LOCK',
Weslee> so that I can stop the writes on the master while I'm moving tables, but
not
Weslee> stop the
Weslee> selects - Or is this making things more of a mess for things that will
get
Weslee> easier later on?
Weslee> Its not that big of a deal as the master has few selects being sent to
it.
The FLUSH TABLES WITH READ LOCK means exactly the above; It makes a
READ LOCK on all tables, which means that other threads can search on
the tables but updates will wait until the lock is released.
<cut>
Regards,
Monty