[Koha-bugs] [Bug 30172] Background jobs failing due to race condition

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Fri Mar 25 08:05:28 CET 2022


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30172

--- Comment #35 from Jonathan Druart <jonathan.druart+koha at gmail.com> ---
We are using a message broker to:
* not rewrite our own task scheduler
* not overload the server (only 1 task at a time, with the default
configuration)
* handle load balancing
* run some tasks in the time slot you wish (not implement yet of course but
that was a plan)
* more flexibility: have several workers, running on different servers, each
could deal with a given job type

Also, we are not strongly tight to RabbitMQ and you are free to provide an
alternative implementation (it's less than 20 lines of code). We chose RabbitMQ
as it's a reference, light, and working out of the box.

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list