Bugzilla – Attachment 125941 Details for
Bug 28413
background job worker is running with all the modules in RAM
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 28413: Reduce background job worker memory footprint
Bug-28413-Reduce-background-job-worker-memory-foot.patch (text/plain), 1.26 KB, created by
Jonathan Druart
on 2021-10-08 08:38:50 UTC
(
hide
)
Description:
Bug 28413: Reduce background job worker memory footprint
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2021-10-08 08:38:50 UTC
Size:
1.26 KB
patch
obsolete
>From 3320f298327a6314d3de4ed43d0a3bc12427cbba Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Fri, 21 May 2021 11:57:20 +0200 >Subject: [PATCH] Bug 28413: Reduce background job worker memory footprint > >It's loading the modules in RAM then forks. >Then do not need it to have them loaded in the parent process (the worker/daemon). > >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >--- > Koha/BackgroundJob.pm | 6 +----- > 1 file changed, 1 insertion(+), 5 deletions(-) > >diff --git a/Koha/BackgroundJob.pm b/Koha/BackgroundJob.pm >index 2275fc3b211..6f217194f46 100644 >--- a/Koha/BackgroundJob.pm >+++ b/Koha/BackgroundJob.pm >@@ -24,11 +24,6 @@ use Try::Tiny qw( catch try ); > use C4::Context; > use Koha::DateUtils qw( dt_from_string ); > use Koha::Exceptions; >-use Koha::BackgroundJob::BatchUpdateBiblio; >-use Koha::BackgroundJob::BatchUpdateAuthority; >-use Koha::BackgroundJob::BatchDeleteBiblio; >-use Koha::BackgroundJob::BatchDeleteAuthority; >-use Koha::BackgroundJob::BatchCancelHold; > > use base qw( Koha::Object ); > >@@ -243,6 +238,7 @@ sub _derived_class { > Koha::Exceptions::Exception->throw($job_type . ' is not a valid job_type') > unless $class; > >+ eval "require $class"; > return $class->new; > } > >-- >2.25.1
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 28413
:
121274
|
125392
|
125941
|
127081
|
127329
|
127598