I have an application running on Rails 2.1.2 that is receiving apparently random (but not completely so) lock wait timeout errors that are rendering the it completely unusable.
Some background:
We recently upgraded to Ruby Enterprise Edition (from 1.8.6) and Mysql 5.1.37 (from 5.0.x).
The app also uses workling/starling (the latest version).
The symptoms:
We have received lock wait timeout errors in our production environment every few nights for the last week.
The errors have most often occurred in production at around 2:30am, but also at 4am and 11pm (That last was right after a release. We rolled back the release thinking it was the culprit, but the errors have persisted).
The errors have also occurred in our staging (twice) and demo (once) environments, but not as regularly.
SQL logs show that a pretty standard update_attribute (just updating a date field with Time.now) call which rails wraps in a begin/commit transaction is not submitting the commit, which may be causing the lock.
While these errors are occurring, starling (which runs on a separate server) is pegged at 100% cpu.
Restarting starling resolves the issue and releases the lock, which would suggest that the problem is with a starling job, but none of the jobs have changes recently, and none of them write to the tables that have been locked (mostly users, but also a couple of others).
The apparent overnight regularity of the issues made us suspect our cron jobs, so we turned them off. The issue has occurred many times wince these were disabled.