Re: LARGE operation stuck. What now?

2005-09-08 Thread Gleb Paharenko
Hello. Here is described the possible way of how to force the rollback (you can kill the mysqld process and set innodb_force_recovery to 3 to bring the database up without the rollback, then DROP the table that is causing the runaway rollback):

Re: LARGE operation stuck. What now?

2005-09-08 Thread Joseph Cochran
Thank you. This is a very promising answer. I don't know that we want to drop the table if we don't have to, but knowing that we can restart the DB without the rollback operation is a boon! We could certainly do a mysqldump of just that table (which works fine, we continue to run nightly

Re: LARGE operation stuck. What now?

2005-09-06 Thread Kevin Burton
INNODB I assume? Replicated environment? What version of mysql? See KILL in the SQL manual.. if you do a show processlist you can get the pid and you might be able to kill it. I believe that it's safe to do a KILL on an DELETE but any decision you make her is your own... That's a LOT of

Re: LARGE operation stuck. What now?

2005-09-06 Thread Joseph Cochran
Thanks for the questions, hopefully this will help: InnoDB, yes. It's version 4.1.11, not replicated. I am familiar with KILL. It is definitely something I CAN do, but not necessarily something I SHOULD do at this point in time. Usually when you kill a process while it's running, it will roll