<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body>A new request with request id 11247 has been created by koha-devel-request@lists.koha-community.org. Short info on the request is : <br><br>Title : Koha-devel Digest, Vol 197, Issue 1<br>Category : <br>Description : <div>Send Koha-devel mailing list submissions to<br>    koha-devel@lists.koha-community.org<br><br>To subscribe or unsubscribe via the World Wide Web, visit<br>    https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-devel<br>or, via email, send a message with subject or body 'help' to<br>    koha-devel-request@lists.koha-community.org<br><br>You can reach the person managing the list at<br>    koha-devel-owner@lists.koha-community.org<br><br>When replying, please edit your Subject line so it is more specific<br>than "Re: Contents of Koha-devel digest..."<br><br><br>Today's Topics:<br><br>   1. Re: [Koha] Switching Koha to ElasticSearch... any problems?<br>      (Philippe Blouin)<br>   2. Re: Switching Koha to ElasticSearch... any problems?<br>      (Thomas Klausner)<br>   3. Koha releases are available đŸŽ (Mason James)<br><br><br>----------------------------------------------------------------------<br><br>Message: 1<br>Date: Thu, 31 Mar 2022 08:47:03 -0400<br>From: Philippe Blouin <philippe.blouin@inlibro.com><br>To: Mason James <mtj@kohaaloha.com>, "koha@lists.katipo.co.nz"<br>    <koha@lists.katipo.co.nz>, Koha Devel<br>    <koha-devel@lists.koha-community.org><br>Subject: Re: [Koha-devel] [Koha] Switching Koha to ElasticSearch...<br>    any problems?<br>Message-ID: <fc7128a6-2251-f97b-0d4a-10901337a06f@inlibro.com><br>Content-Type: text/plain; charset="utf-8"; Format="flowed"<br><br>Hi Mason,<br><br>We've made the switch to most of our production systems.  The process <br>was rather simple and the results are much better than before.<br><br>Major problem?  no.  Missing: for one, date range searches do not work <br>at all.  If it matters to your users, thread carefully.<br><br><br>On 2022-03-30 22:52, Mason James wrote:<br>> hi Folks<br>> does anyone have any experience running Koha with ES?<br>><br>> i've done some basic testing (on 20.11) - it seems to work well and <br>> its speed is impressive! (đŸĻ„ + đŸŒˆ)<br>><br>> - is it generally safe to run in production?<br>> - any major problems, or missing areas of functionality?<br>><br>><br>> any advice or info would be welcomed<br>><br>> cheers, Mason<br>> _______________________________________________<br>><br>> Koha mailing list http://koha-community.org<br>> Koha@lists.katipo.co.nz<br>> Unsubscribe: https://lists.katipo.co.nz/mailman/listinfo/koha<br>-- <br>Philippe Blouin,<br>Directeur de la technologie<br><br>TÊl.  : (833) 465-4276, poste 230<br>philippe.blouin@inLibro.com<br><br>inLibro | pour esprit libre | www.inLibro.com <http://www.inLibro.com><br>-------------- next part --------------<br>An HTML attachment was scrubbed...<br>URL: <http://lists.koha-community.org/pipermail/koha-devel/attachments/20220331/be0883ee/attachment-0001.htm><br><br>------------------------------<br><br>Message: 2<br>Date: Thu, 31 Mar 2022 15:15:57 +0200<br>From: Thomas Klausner <domm@plix.at><br>To: "koha@lists.katipo.co.nz" <koha@lists.katipo.co.nz>, Koha Devel<br>    <koha-devel@lists.koha-community.org><br>Subject: Re: [Koha-devel] Switching Koha to ElasticSearch... any<br>    problems?<br>Message-ID: <20220331131557.GR751042@plix.at><br>Content-Type: text/plain; charset=utf-8<br><br>Hi!<br><br>On Thu, Mar 31, 2022 at 03:52:45PM +1300, Mason James wrote:<br><br>> does anyone have any experience running Koha with ES?<br>> <br>> i've done some basic testing (on 20.11) - it seems to work well and its speed is impressive! (đŸĻ„ + đŸŒˆ)<br>> <br>> - is it generally safe to run in production?<br>> - any major problems, or missing areas of functionality?<br><br>We launched a big library using ElasticSearch this January, it work very <br>well, but:<br><br>* you need to make sure to give ES the proper resources on the server.<br>  It will need more RAM than Zebra...<br><br>* I discovered (and fixed) a few bugs in the ElasticSearch Mappings <br>  Tool, until they are merged (and published in a new release) be very <br>  careful with this DataTable! (30142, 29893, 29010)<br><br>* Not all searches use those mappings, eg auth_finder.pl uses hardcoded <br>  MARC fields<br><br>* ElasticSearch interprets lowercase boolean ops as literal search <br>  terms. So "foo or bar" finds docs that contain "foo" and "or" and <br>  "bar", but "foo OR bar" finds docs containing either "foo" or "bar".<br>  AFAIK in 20.11 most of these problems are fixed, but see 30153 for a <br>  rather recent fix (which I think is already available in the most <br>  recent point releases)<br><br>* One thing that proved problematic during our initial migration of 500k <br>  records was that ElasticSearch indexing is automatically triggered <br>  after each edit for each item. This is fine when editing / catalouging <br>  by hand, because all changes are immediatly available. But during <br>  migration it caused a huge performance hit. There is / was some work <br>  to offload the indexing to a worker process, but I think that's not <br>  done / stalled. So we hacked our instance to skip the immediate <br>  indexing via an ENV var (much easier than passing a command line flag <br>  from the script through several layers of modules)<br><br>having said that, I think going with ES is a very smart move, because <br>(other then Zebra) it's a standard tool with very good docs and a lot of <br>knowledgable people (i.e. stackoverflow) to help you :-)<br><br>Greetings,<br>domm<br><br>-- <br>#!/usr/bin/perl                             https://domm.plix.at<br>for(ref bless{},just'another'perl'hacker){s-:+-$"-g&&print$_.$/}<br><br><br>------------------------------<br><br>Message: 3<br>Date: Fri, 1 Apr 2022 15:07:48 +1300<br>From: Mason James <mtj@kohaaloha.com><br>To: "koha@lists.katipo.co.nz" <koha@lists.katipo.co.nz>, Koha Devel<br>    <koha-devel@lists.koha-community.org><br>Subject: [Koha-devel] Koha releases are available đŸŽ<br>Message-ID: <25b5b960-b3a0-34b4-d0ee-597f1f4bc7c0@kohaaloha.com><br>Content-Type: text/plain; charset=UTF-8; format=flowed<br><br>kia ora community,<br><br>the latest Koha packages are available<br><br>installation guide is below...<br>  https://wiki.koha-community.org/wiki/Koha_on_Debian<br><br><br>cheers, Mason<br><br><br>------------------------------<br><br>Subject: Digest Footer<br><br>_______________________________________________<br>Koha-devel mailing list<br>Koha-devel@lists.koha-community.org<br>https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-devel<br>website : https://www.koha-community.org/<br>git : https://git.koha-community.org/<br>bugs : https://bugs.koha-community.org/<br><br><br>------------------------------<br><br>End of Koha-devel Digest, Vol 197, Issue 1<br>******************************************<br></div><br><br>NOTE: You are receiving this mail because, the Requester/Technician wanted you to get notified on this request creation.<br></body></html>