vote up 1 vote down star
1

I noticed that 'show processlist' on our MySQL server indicates a lot of threads in 'System lock' state, often followed by just 'Locked', the latter which I'd expect since we have some selects locking behind an update/insert on a MyISAM table.

But 'System lock' shows up a lot more than just 'Locked' (sometimes adding up to 2 seconds to a simple select, according to the profiler), and I don't understand what it indicates. I couldn't find much info on system lock online, but what's there mostly discusses situations with multiple mysqld's accessing the same db, which is not my case. Furthermore, my 'skip external locking' variable is false.

Anyone have experience with this?

Addendum:

If it helps, I tend to see more system locks than table locks ('Locked') by about 3 to 1 in the processlist. Is it possible that for some reason 'System lock' is being output for what's effectively regular table locking?

flag
you should expect to see more system locks then table locks. there's a page in the mysql manual that describes how file locks are used. – longneck Oct 19 at 20:03
I hope I didn't just overlook it, but do you have a link? Searching the manual for "system lock" and "file lock" I found, respectively, cursory info and no info. – Yash Oct 20 at 22:14

1 Answer

vote up 0 vote down

you will see this status while mysql is waiting for the OS to take a lock that mysql has requested. is your server scarce on file handles?

link|flag
This can be checked by using: ulimit -n – Jeremy Oct 16 at 17:56
Thanks for the quick replies. If ulimit -n is the key limit, then I don't think that's it by itself. We raised it way up just to be sure, and we still get system locks. – Yash Oct 16 at 20:15

Your Answer

Get an OpenID
or

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