Bugzilla – Attachment 109324 Details for
Bug 22417
Add a task queue
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 22417: [DO NOT PUSH] Add simple worker and add_job scripts
Bug-22417-DO-NOT-PUSH-Add-simple-worker-and-addjob.patch (text/plain), 2.42 KB, created by
Marcel de Rooy
on 2020-08-31 08:25:09 UTC
(
hide
)
Description:
Bug 22417: [DO NOT PUSH] Add simple worker and add_job scripts
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2020-08-31 08:25:09 UTC
Size:
2.42 KB
patch
obsolete
>From d8ef5d25fb8f238a94be52f52b8841ea7a34db58 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Mon, 25 Feb 2019 21:44:51 -0300 >Subject: [PATCH] Bug 22417: [DO NOT PUSH] Add simple worker and add_job > scripts >Content-Type: text/plain; charset=utf-8 > >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> > >Signed-off-by: David Cook <dcook@prosentient.com.au> > >Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >--- > koha_worker.pl | 37 +++++++++++++++++++++++++++++++++++++ > new_koha_job.pl | 26 ++++++++++++++++++++++++++ > 2 files changed, 63 insertions(+) > create mode 100644 koha_worker.pl > create mode 100644 new_koha_job.pl > >diff --git a/koha_worker.pl b/koha_worker.pl >new file mode 100644 >index 0000000000..13af3dfd70 >--- /dev/null >+++ b/koha_worker.pl >@@ -0,0 +1,37 @@ >+#!/usr/bin/perl >+ >+use Modern::Perl; >+use Net::RabbitFoot; >+use JSON qw( encode_json decode_json ); >+ >+use Koha::BackgroundJob::BatchUpdateBiblio; >+use Koha::BackgroundJob; >+ >+my $conn = Koha::BackgroundJob->connect; >+ >+my $channel = $conn->open_channel(); >+ >+my $job_type = 'batch_biblio_record_modification'; >+$channel->declare_queue( >+ queue => $job_type, >+ durable => 1, >+); >+ >+$channel->qos(prefetch_count => 1,); >+ >+$channel->consume( >+ on_consume => sub { >+ my $var = shift; >+ my $body = $var->{body}->{payload}; >+ say " [x] Received $body"; >+ >+ my $args = decode_json( $body ); >+ >+ Koha::BackgroundJob::BatchUpdateBiblio->process($args, $channel); >+ say " [x] Done"; >+ }, >+ no_ack => 0, >+); >+ >+# Wait forever >+AnyEvent->condvar->recv; >diff --git a/new_koha_job.pl b/new_koha_job.pl >new file mode 100644 >index 0000000000..b29aa82d94 >--- /dev/null >+++ b/new_koha_job.pl >@@ -0,0 +1,26 @@ >+#!/usr/bin/perl >+ >+use Modern::Perl; >+use C4::Context; >+use Koha::BackgroundJob::BatchUpdateBiblio; >+use Koha::BackgroundJob; >+ >+use Net::RabbitFoot; >+ >+my $mmtid = 1; >+my $record_type = 'biblio'; >+my @record_ids = ( 1, 2, 3 ); >+ >+C4::Context->_new_userenv(42); >+C4::Context->set_userenv( 51, 51, 42, 'koha', 'koha', 'CPL', 'CPL', 1 ); >+ >+say " [x] Enqueuing BatchUpdateBiblio mmtid=$mmtid with biblionumber=" >+ . join( ',', @record_ids ); >+Koha::BackgroundJob::BatchUpdateBiblio->new->enqueue( >+ { >+ job_type => 'batch_record_modification', >+ mmtid => $mmtid, >+ record_type => $record_type, >+ record_ids => \@record_ids, >+ } >+); >-- >2.11.0
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 22417
:
105542
|
105543
|
107385
|
107386
|
107387
|
107388
|
107389
|
107390
|
107391
|
107392
|
107393
|
107394
|
107395
|
107396
|
107397
|
107398
|
107399
|
107400
|
107401
|
107402
|
107403
|
107404
|
107405
|
107406
|
107481
|
107482
|
107682
|
108023
|
108024
|
108025
|
108026
|
108027
|
108028
|
108029
|
108030
|
108031
|
108032
|
108033
|
108034
|
108035
|
108036
|
108037
|
108038
|
108039
|
108040
|
108041
|
108042
|
108043
|
108044
|
108045
|
108046
|
108047
|
109270
|
109271
|
109319
|
109320
|
109321
|
109322
|
109323
|
109324
|
109325
|
109326
|
109327
|
109328
|
109329
|
109330
|
109331
|
109332
|
109333
|
109334
|
109335
|
109336
|
109337
|
109338
|
109339
|
109340
|
109341
|
109342
|
109343
|
109344
|
109345
|
109350
|
109351
|
109355
|
109390
|
109391
|
109392
|
109393
|
109394
|
109395
|
109396
|
109397
|
109398
|
109399
|
109400
|
109401
|
109402
|
109403
|
109404
|
109405
|
109406
|
109407
|
109408
|
109409
|
109410
|
109411
|
109412
|
109413
|
109414
|
109415
|
109416
|
109417
|
109418
|
109474
|
109475
|
109476
|
109477
|
110150
|
111091
|
111092
|
111093
|
111094
|
111095
|
111096
|
111097
|
111098
|
111099
|
111100
|
111101
|
111102
|
111103
|
111104
|
111105
|
111106
|
111107
|
111108
|
111109
|
111110
|
111111
|
111112
|
111113
|
111114
|
111115
|
111116
|
111117
|
111118
|
111119
|
111120
|
111121
|
111238
|
111239
|
111245