[Koha-bugs] [Bug 27267] Create more efficient daemon for indexing Zebra

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Fri Dec 18 01:30:46 CET 2020


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

--- Comment #1 from David Cook <dcook at prosentient.com.au> ---
At the moment, it's a single threaded single Perl process that does blocking
I/O, so the time it takes to query all Koha databases will degrade as you add
Koha databases. While the database queries are fast, this is a potential
limitation.

However, I could use Mojo to do non-blocking I/O for the database queries,
which would remove that potential scalability limitation. 

Alternatively, I could look at benchmarking the database queries to see if it
really is just a hypothetical limitation. 

It is possible that I could get some paid work time to do this work, but I want
to see what community feedback I can get before I do a POC.

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


More information about the Koha-bugs mailing list