Bugzilla – Attachment 177692 Details for
Bug 39076
Elasticsearch timeouts when committing import batches
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 39076: Use state variable to avoid creating extra ES connections
Bug-39076-Use-state-variable-to-avoid-creating-ext.patch (text/plain), 1.60 KB, created by
Nick Clemens (kidclamp)
on 2025-02-10 13:23:22 UTC
(
hide
)
Description:
Bug 39076: Use state variable to avoid creating extra ES connections
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2025-02-10 13:23:22 UTC
Size:
1.60 KB
patch
obsolete
>From 3fa1ef2fd11a5c982d8f0a98247a686dd21e6ba9 Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Mon, 10 Feb 2025 13:09:31 +0000 >Subject: [PATCH] Bug 39076: Use state variable to avoid creating extra ES > connections > >As elsewhere in the code, we should use a state variable for our >'bib_searcher' object to avoid overhead of extra ES connections. > >Worth noting - we don't actually use the bib_search at all during >record auto linking as we pass skipmetadata > >To test: >0 - Apply patch >1 - Enable biblio auto linking > AutoLinkBiblios, CatalogModuleRelink, LinkerRelink >2 - Stage and import a marc file >3 - Confirm record authorities link as expected >4 - Search authorities in the staff interface >5 - Confirm usage counts are shown for results >--- > Koha/SearchEngine/Elasticsearch/Search.pm | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > >diff --git a/Koha/SearchEngine/Elasticsearch/Search.pm b/Koha/SearchEngine/Elasticsearch/Search.pm >index 171c00c729d..e584391b047 100644 >--- a/Koha/SearchEngine/Elasticsearch/Search.pm >+++ b/Koha/SearchEngine/Elasticsearch/Search.pm >@@ -214,7 +214,8 @@ sub search_auth_compat { > my $schema = $database->schema(); > my $res = $self->search($query, undef, $count, %options); > >- my $bib_searcher = Koha::SearchEngine::Elasticsearch::Search->new({index => 'biblios'}); >+ # Use state variables to avoid recreating the objects every time. >+ state $bib_searcher = Koha::SearchEngine::Elasticsearch::Search->new({index => 'biblios'}); > my @records; > my $hits = $res->{'hits'}; > foreach my $es_record (@{$hits->{'hits'}}) { >-- >2.39.5
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 39076
:
177692
|
177695
|
177714