Re: Timeout occured while waiting response from server

2020-12-10 Thread elivis
See: https://lucene.472066.n3.nabble.com/SolrServerException-Timeout-occured-while-waiting-response-from-server-tc4464632.html Maybe this will help somebody. I was dealing with exact same problem. We are running on VMs, and all of our timeout problems went away after we switched from a 5yo VmWare

Are values in solr.xml 32-bit or 64-bit?

2020-11-11 Thread elivis
I'm trying to find out what are the maximum values for parameters specified in solr.xml file? Mainly I am interested in distribUpdateConnTimeout and distribUpdateSoTimeout. I have tried setting those values to 0 in hopes that it would set the timeout to infinite, but I don't think that worked. I

Re: How to get case-sensitive Terms?

2021-02-01 Thread elivis
Alexandre Rafalovitch wrote > Admin UI also allows you to run text string against a field definition to > see what each stage of analyzer chain does. Thank you. Could please let me know how to do this (see what each stage of analyzer chain does)? -- Sent from:

Re: How to get case-sensitive Terms?

2021-02-01 Thread elivis
Alexandre Rafalovitch wrote > Admin UI also allows you to run text string against a field definition to > see what each stage of analyzer chain does. Thank you. Could you please give me some pointers how to achieve this (see what each stage of analyzer chain does in Admin UI)? -- Sent from:

Re: How to get case-sensitive Terms?

2021-02-03 Thread elivis
Alexandre Rafalovitch wrote > It is documented in the reference guide: > https://lucene.apache.org/solr/guide/8_8/analysis-screen.html > > Hope it helps, >Alex. > > On Tue, 2 Feb 2021 at 00:57, elivis > elivis@ > wrote: >> >> Alexandre Rafalovi

How to get case-sensitive Terms?

2021-01-30 Thread elivis
I'm using Terms Component functionality (https://lucene.apache.org/solr/guide/8_4/the-terms-component.html) to get all terms from an index. However, I need the terms to be in the original case lettering (e.g. "TeSt"). So far I am only able to get lowercased terms (i.e. "test" instead of "TeSt").

Re: How to get case-sensitive Terms?

2021-02-17 Thread elivis
Alexandre Rafalovitch wrote > What about copyField with the target being index only (docValue only?) and > no lowercase on the target field type? > > Solr is not a database, you are optimising for search. So duplicate, > multi-process, denormalise, create custom field types, etc. > > Regards, >