I assume this means the db is using flock on the files? I can't find documentation about this state.
However, I'm not running mysqld with --enable-locking! I'm using --skip-locking, which "show status" confirms:
skip_locking ON
So are we losing performance because of this? Or is MySQL should going doing something like:
set_state("System Lock");
// we are here?
if (! skip_locking) {
flock(....);
}
set_state("Sending data...");
This disturbs me.