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

--- Comment #8 from Barton Chittenden <[email protected]> ---
It turns out that the 1024 K limit is the default max record size in zebrasrv;
this can be changed using the -k option to zebrasrv.

man zebrasrv shows:

-k size
   Maximum record size/message size, in kilobytes. Default is 1024 KB (1 MB).

This could be increased in koha-start-zebra, koha-restart-zebra and koha-zebra.
I imagine the change would look something like this:

from

        zebrasrv \
        -v $loglevels \
        -f "/etc/koha/sites/$instancename/koha-conf.xml" && \
        return 0 || \
        return 1

to

        zebrasrv \
        -v $loglevels \
        -k $max_record_size
        -f "/etc/koha/sites/$instancename/koha-conf.xml" && \
        return 0 || \
        return 1

where $max_record_size would be read from $KOHA_CONF in the same manner that
$loglevels is.

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to