What's the max value of 'leaderVoteWait' users can set?

2021-03-09 Thread Amy Bai
Hi community, What's the max value of 'leaderVoteWait' users can set? I found that there might be a limitation of the 'leaderVoteWait' which can be configured in solr.xml. When I set 'leaderVoteWait' to '18', the follower replica of solr shard will remain as down when if I restart solr n

Re: Increase in response time in case of collapse queries.

2021-03-09 Thread Parshant Kumar
Hi Joel, 1) What are the response times for both methods. Saying one is faster is not specific enough. Response time for the grouped method is 167 ms for 0.65 million requests. Response time for the collapsed method is 177 ms for 0.65 million requests. 2) What is the cardinality of the collapse

Re: OutOfMemoryError: when deleting/updating the data

2021-03-09 Thread Ashique
Unsubscribe please On Tuesday, March 9, 2021, Shawn Heisey wrote: > On 3/8/2021 8:18 PM, Hitesh Khamesra wrote: > >> We are getting OutOfMemoryError, while concurrently deleting and updating >> the data. Looks like we don't have a thread pool to merge segment/index. >> Is >> it possible to contr

Re: OutOfMemoryError: when deleting/updating the data

2021-03-09 Thread Sripradeep
Unsubscribe On Tue, Mar 9, 2021 at 3:10 PM Ashique wrote: > Unsubscribe please > > On Tuesday, March 9, 2021, Shawn Heisey wrote: > > > On 3/8/2021 8:18 PM, Hitesh Khamesra wrote: > > > >> We are getting OutOfMemoryError, while concurrently deleting and > updating > >> the data. Looks like we

Re: OutOfMemoryError: when deleting/updating the data

2021-03-09 Thread abhay
unsubscribe On Tue, Mar 9, 2021 at 3:50 PM Sripradeep wrote: > Unsubscribe > > > > On Tue, Mar 9, 2021 at 3:10 PM Ashique wrote: > > > Unsubscribe please > > > > On Tuesday, March 9, 2021, Shawn Heisey wrote: > > > > > On 3/8/2021 8:18 PM, Hitesh Khamesra wrote: > > > > > >> We are getting Out

Info About How to Unsubscribe From Mail List

2021-03-09 Thread Furkan KAMACI
Hi, To stop the subscription, please send a request to users-unsubscr...@solr.apache.org Please let me know via users-ow...@solr.apache.org if you have any problems even if you send a request to unsubscribe and do not send such emails to users@solr.apache.org. I don't want to change the email li

Searching and WordDelimiterGraphFilterFactory

2021-03-09 Thread Shaun Campbell
Hi I'm trying to produce an autosuggestion field for project ids using ngrams and WordDelimiterGraphFilterFactory to split on word number boundaries. The ids have various formats ranging from nihr123456, 12/34/567, DRF-2018-11-ST2-062. What I'm trying to do is allow the user to enter the number

Re: zk upconfig does not recognize ZK_HOST style url

2021-03-09 Thread Jan Høydahl
This sounds like a bug. Please open a JIRA issue for it. The bug appears when parsing zkHost in SolrCLI.java, here is one place https://github.com/apache/lucene-solr/blob/master/solr/core/src/java/org/apache/solr/util/SolrCLI.java#L212 but there are others. We need to parse the string, pull out

Re: graph traversal filter which uses document value in the query

2021-03-09 Thread Lee Carroll
Let me see if I can reword this: The traversal filter attribute in a graph parser query limits the documents which get traversed. I'd like to limit each document using a value from the parent document. For example only traverse child documents which have a start time 10 minutes greater than the par

RE: OutOfMemoryError: when deleting/updating the data

2021-03-09 Thread Vanalli, Ali A - DOT
Unsubscribe, please -Original Message- From: abhay Sent: Tuesday, March 9, 2021 4:28 AM To: users@solr.apache.org Subject: Re: OutOfMemoryError: when deleting/updating the data unsubscribe On Tue, Mar 9, 2021 at 3:50 PM Sripradeep wrote: > Unsubscribe > > > > On Tue, Mar 9, 2021 at 3:

Writing the hostname in RemoteSolrException should be configurable

2021-03-09 Thread Bremer, Gerd
Hi, the exception message created in RemoteSolrException contains the remote hostname and maybe the port. public RemoteSolrException(String remoteHost, int code, String msg, Throwable th) { super(code, "Error from server at " + remoteHost + ": " + msg, th); } If the exception is written to

Re: Searching and WordDelimiterGraphFilterFactory

2021-03-09 Thread Susmit
q.op = AND could be useful. the parts broken down by WDgff joined by ‘AND’ Sent from my iPhone > On Mar 9, 2021, at 3:07 AM, Shaun Campbell wrote: > > Hi > > I'm trying to produce an autosuggestion field for project ids using > ngrams and WordDelimiterGraphFilterFactory to split on word numbe

Re: Searching and WordDelimiterGraphFilterFactory

2021-03-09 Thread Shaun Campbell
Hi Susmit That didn't seem to work. Don't know if I was doing something wrong. I ended up writing a regex to split the incoming string into strings of numbers and letters and build up the query manually. It's all working now. Thanks Shaun On Tue, 9 Mar 2021 at 16:50, Susmit wrote: > q.op = AND

Re: Searching and WordDelimiterGraphFilterFactory

2021-03-09 Thread Jörn Franke
From the Solr ref guide: you forgot the flatten graph filter at the end - this is needed for any graph filter you use : > Am 09.03.2021 um 22:21 schrieb Shaun Campbell : > > Hi Susmit > > That didn't seem to work. Don't know if I was doing something wrong. I > ended up writing a regex to spl

Re: OutOfMemoryError: when deleting/updating the data

2021-03-09 Thread Hitesh Khamesra
Thanks, Shwan. We checked our limits and those looked high enough. I am wondering if there is any possibility to introduce a thread pool for segment merge above? Also, do we know what is the appropriate size for jvm stack size (Xss) Thanks. Hitesh. On Mon, Mar 8, 2021 at 10:33 PM Shawn Heisey w

Unable to see features and models uploaded to SOLR LTR

2021-03-09 Thread Lazar Kovacevic
Issue is exactly the same as this one reported on docker-solr project: https://github.com/docker-solr/docker-solr/issues/335 I uploaded the feature store and model, following the official documentation, with no errors reported, nor are there errors in log files, and yet features are not visib

Re: Unable to see features and models uploaded to SOLR LTR

2021-03-09 Thread Jörn Franke
Do you you enable ltr at Solr startup ? -Dsolr.ltr.enabled=true > Am 10.03.2021 um 04:23 schrieb Lazar Kovacevic : > > Issue is exactly the same as this one reported on docker-solr project: > > > > https://github.com/docker-solr/docker-solr/issues/335 > > > > I uploaded the feature store

Re: Unable to see features and models uploaded to SOLR LTR

2021-03-09 Thread Diego Ceccarelli
also you might need to reload the core to see the features / models loaded: https://solr.apache.org/guide/8_5/coreadmin-api.html see RELOAD On Wed, Mar 10, 2021, 06:33 Jörn Franke wrote: > Do you you enable ltr at Solr startup ? > > -Dsolr.ltr.enabled=true > > > Am 10.03.2021 um 04:23 schrieb