Bugzilla – Attachment 152282 Details for
Bug 33987
Combine multiple db updates in C4::ImportBatch::BatchCommitRecords for efficiency/avoiding possible deadlocks
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 33987 - Combine multiple db updates one in BatchCommitRecords
Bug-33987---Combine-multiple-db-updates-one-in-Bat.patch (text/plain), 2.34 KB, created by
Kyle M Hall (khall)
on 2023-06-12 18:34:00 UTC
(
hide
)
Description:
Bug 33987 - Combine multiple db updates one in BatchCommitRecords
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2023-06-12 18:34:00 UTC
Size:
2.34 KB
patch
obsolete
>From ec841c91aa2bafff8c4ae74003d94f0a8ca54a21 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Mon, 12 Jun 2023 14:20:53 -0400 >Subject: [PATCH] Bug 33987 - Combine multiple db updates one in > BatchCommitRecords > >When replacing existing records BatchCommitRecords will the table import_records will be updated three times for three different fields by three different queries. Not only is this inefficient ( especially for large batches ), it seems that this is causing the dreaded "Lock wait timeout exceeded; try restarting transaction" error on some mysql/mariadb configurations. > >1) Test plan >2) Download a marc record from Koha >3) Modify the title of that same bib in Koha >4) Stage the downloaded record and overlay the existing record >5) Verify the title has reverted to the original title from the > downloaded record! >--- > C4/ImportBatch.pm | 7 +++---- > 1 file changed, 3 insertions(+), 4 deletions(-) > >diff --git a/C4/ImportBatch.pm b/C4/ImportBatch.pm >index 65c0743ffd..80d976a34c 100644 >--- a/C4/ImportBatch.pm >+++ b/C4/ImportBatch.pm >@@ -681,14 +681,13 @@ sub BatchCommitRecords { > ModAuthority($recordid, $marc_record, GuessAuthTypeCode($marc_record)); > $query = "UPDATE import_auths SET matched_authid = ? WHERE import_record_id = ?"; > } >- my $sth = $dbh->prepare_cached("UPDATE import_records SET marcxml_old = ? WHERE import_record_id = ?"); >- $sth->execute($oldxml, $rowref->{'import_record_id'}); >+ # Combine xml update, SetImportRecordOverlayStatus, and SetImportRecordStatus updates into a single update for efficiency, especially in a transaction >+ my $sth = $dbh->prepare_cached("UPDATE import_records SET marcxml_old = ?, status = ?, overlay_status = ? WHERE import_record_id = ?"); >+ $sth->execute($oldxml, 'imported', 'match_applied',, $rowref->{'import_record_id'}); > $sth->finish(); > my $sth2 = $dbh->prepare_cached($query); > $sth2->execute($recordid, $rowref->{'import_record_id'}); > $sth2->finish(); >- SetImportRecordOverlayStatus($rowref->{'import_record_id'}, 'match_applied'); >- SetImportRecordStatus($rowref->{'import_record_id'}, 'imported'); > } elsif ($record_result eq 'ignore') { > $recordid = $record_match; > $num_ignored++; >-- >2.30.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 33987
:
152282
|
152297
|
152399
|
152403
|
152406