Re: [CAUTION] SSL + Solr 8.5.1 in cloud mode + Java 8

2020-07-13 Thread Natarajan, Rajeswari
Thank you so much for the response. Below are the configs I have in solr.in.sh and I followed https://lucene.apache.org/solr/guide/8_5/enabling-ssl.html documentation # Enables HTTPS. It is implicitly true if you set SOLR_SSL_KEY_STORE. Use this config # to enable https module with custom jet

Re: Solr heap Old generation grows and it is not recovered by G1GC

2020-07-13 Thread Odysci
Shawn, thanks for the extra info. The OOM errors were indeed because of heap space. In my case most of the GC calls were not full GC. Only when heap was really near the top, a full GC was done. I'll try out your suggestion of increasing the G1 heap region size. I've been using 4m, and from what yo

Re: JTS, IsWithin predicate, and multivalued fields

2020-07-13 Thread Murray Johnston
Replying to myself and for posterity: This is expected behavior per the comments on https://issues.apache.org/jira/browse/LUCENE-4644 that originally added the IsWithin predicate. Too bad, I was really pleased with my idea but I can see why it was implemented the way it was. Back to the dra

Re: [CAUTION] SSL + Solr 8.5.1 in cloud mode + Java 8

2020-07-13 Thread Kevin Risden
> > In local with just certificate and one domain name the SSL communication > worked. With multiple DNS and 2 certificates SSL fails with below exception. > A client keystore by definition can only have a single certificate. A server keystore can have multiple certificates. The reason being is t

Re: [CAUTION] SSL + Solr 8.5.1 in cloud mode + Java 8

2020-07-13 Thread Natarajan, Rajeswari
I looked at the patch mentioned in the JIRA https://issues.apache.org/jira/browse/SOLR-14105 reporting the below issue. I looked at the solr 8.5.1 code base , I see the patch is applied. But still seeing the same exception with different stack trace. The initial excsption stacktrace was at

JTS, IsWithin predicate, and multivalued fields

2020-07-13 Thread Murray Johnston
Hi all, I'm trying to use (abuse[1]) a SpatialRecursivePrefixTreeFieldType field that is multivalued with the IsWithin JTS predicate. After some testing, it appears that all values of the field must satisfy the predicate in order for the document to be returned. Is that expected? It seems s

Performance difference between query by id and filter query on property

2020-07-13 Thread Drew Kidder
We're switching to using composite routing in our solr cloud collection, and of course that changes the document id. If I'm setting the document id myself, what is the performance difference between q=id:123!4567 and q=*:*&fq=some_field:4567? Example: Pre-indexed document: - field1: 4567 -

Re: [EXTERNAL] Re: JSON Facet with local parameter

2020-07-13 Thread Mohamed Sirajudeen Mayitti Ahamed Pillai
Thanks Chris, It works like a charm. http://server:8983/solr/collection/select?arrivalRange=121YEARS&json.facet={%22NEW%20ARRIVALS%22:{%22start%22:NOW/DAY-${arrivalRange},%20%22sort%22:%22index%22,%22type%22:%22range%22,%22field%22:%22pdp_activation_date_dt%22,%22gap%22:%22%2B${arrivalRange}%22

Re: JSON Facet with local parameter

2020-07-13 Thread Chris Hostetter
The JSON based query APIs (including JSON Faceting) use (and unfortunately subtly different) '${NAME}' syntax for dereferencing variables in the "body" of a JSON data structure... https://lucene.apache.org/solr/guide/8_5/json-request-api.html#parameter-substitution-macro-expansion ...but note

Re: Replica goes into recovery mode in Solr 6.1.0

2020-07-13 Thread vishal patel
Thanks for your reply. When I searched my error "org.apache.http.NoHttpResponseException: failed to respond" in Google, I found the one Solr jira case : https://issues.apache.org/jira/browse/SOLR-7483. I saw a comment of @Erick Erickson. is this issue resolved?

Re: SOLR and Zookeeper compatibility

2020-07-13 Thread Bernd Fehling
Am 13.07.20 um 09:55 schrieb Mithun Seal: > Hi Team, > > Could you please help me with below compatibility question. > > 1. We are trying to install zookeeper externally along with SOLR 7.5.0. > As noted, SOLR 7.5.0 comes with Zookeeper 1.3.11. Where did you get that info from? AFAIK, Solr

SOLR and Zookeeper compatibility

2020-07-13 Thread Mithun Seal
Hi Team, Could you please help me with below compatibility question. 1. We are trying to install zookeeper externally along with SOLR 7.5.0. As noted, SOLR 7.5.0 comes with Zookeeper 1.3.11. Can I install Zookeeper 1.3.10 with SOLR 7.5.0. Zookeeper 1.3.10 will be compatible with SOLR 7.5.0? 2. W

SSL + Solr 8.5.1 in cloud mode + Java 8

2020-07-13 Thread Natarajan, Rajeswari
Re-sending to see if anyone encountered had this combination and encountered this issue. In local with just certificate and one domain name the SSL communication worked. With multiple DNS and 2 certificates SSL fails with below exception. Below JIRA says it is fixed for Http2SolrClient , wond