From d117f36952b5829085958d647f29bd3deac6acf5 Mon Sep 17 00:00:00 2001 From: ivan Date: Wed, 16 Mar 2011 01:26:31 +0000 Subject: [PATCH] fix mysql deadlock handling --- FS/bin/freeside-torrus-srvderive | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/FS/bin/freeside-torrus-srvderive b/FS/bin/freeside-torrus-srvderive index 0441c4704..38dfdbbe8 100644 --- a/FS/bin/freeside-torrus-srvderive +++ b/FS/bin/freeside-torrus-srvderive @@ -59,7 +59,7 @@ my $orderlimit = " "; -while (1) { +MAIN: while (1) { my $found = 0; @@ -131,10 +131,13 @@ while (1) { my $isth = dbh->prepare($isql) or die $DBI::errstr; #better recovery? - #stupid mysql deadlocks all the time here, so we need to recover - $isth->execute( @param ) or do { + #stupid mysql deadlocks all the time on insert, so we need to recover + unless ( $isth->execute(@param) ) { warn "Error inserting data for $serviceid$dir (restarting): ". $isth->errstr; + dbh->rollback; #or die dbh->errstr; + sleep 5; + next MAIN; } } @@ -151,7 +154,7 @@ while (1) { } warn "done with $serviceid\n" if $DEBUG; - } + } #foreach my $torrus_srvderive dbh->commit or die dbh->errstr; myexit() if sigterm() || sigint(); -- 2.11.0