I have a long-running process in MySQL. It has been running for a week. There is one other connection, to a replication master, but I have halted slave processing so there's effectively nothing else going on.

How can I tell if this process is still working? I knew it would take a long time which is why I put it on its own database instance, but this is longer than I anticipated. Obviously, if it is still doing work, I don't want to kill it. If it is zombied, then I don't know how to get the work done that it's supposed to be doing.

It's in the "Sending data" state. The table is an InnoDB one but without any FK references that are used by the query. The InnoDB status shows no errors or locks since the query started.

Any thoughts are appreciated.

link|improve this question
feedback

4 Answers

Try "SHOW PROCESSLIST" to see what's active.

Of course if you kill it, it may then want to take just as much time rolling it back.

link|improve this answer
It's active in the processlist, in the 'Sending data' state. The number of seconds it's been active continues to increase. I just don't know how to tell if it's actually doing anything or not. – user87843 Apr 7 '09 at 17:12
Are the file sizes changing? Also, you should see some effect in SHOW STATUS (in various wrrites and cachees). – le dorfier Apr 7 '09 at 17:19
feedback

You need to kill it and come up with better indices.

I did a job for a guy. Had a table with about 35 million rows. His batch process, like yours, had been running a week, with no end in sight. I added some indexes, made some changes to the order and methods of his batch process, and got the whole thing down to about two and a half hours. On a slower machine.

link|improve this answer
You are right that it is not indexed as well as it could be. But surely if improving the indices would make the process run, letting it run as is will succeed, just after a longer time. What I can't tell is if it is doing anything at all, at this point. – user87843 Apr 7 '09 at 17:13
feedback

For better performance on a database that size, you may want to look at a document based database such as mongoDB. It will take more hard drive space to store the database, but depending on your current schema, you may get much better performance.

link|improve this answer
feedback

Given what you've said, it's not stuck. However, the is absolutely no guarantee that it will actually finish in anything resembling a reasonable amount of time. Adding indicies will almost certainly help, and depending on the type of query refactoring it into a series of queries that use temp tables could possibly give you a huge performance boost. I wouldn't suggest waiting around for it to maybe finish.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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