Re: Replica goes into recovery mode in Solr 6.1.0

2020-07-07 Thread vishal patel
Thanks for your reply. One server has total 320GB ram. In this 2 solr node one is shard1 and second is shard2 replica. Each solr node have 55GB memory allocated. shard1 has 585GB data and shard2 replica has 492GB data. means almost 1TB data in this server. server has also other applications

solr query to return matched text to regex with default schema

2020-07-07 Thread Phillip Wu
Hi, I want to search Solr for server names in a set of Microsoft Word documents, PDF, and image files like jpg,gif. Server names are given by the regular expression(regex) INFP[a-zA-z0-9]{3,9} TRKP[a-zA-z0-9]{3,9} PLCP[a-zA-z0-9]{3,9} SQRP[a-zA-z0-9]{3,9} Problem === I want to get the

Suggester.count parameter for different dictionaries

2020-07-07 Thread Ing. Andrea Vettori
Hello, we’re using different dictionaries with the suggester component for autocomplete with a setup similar to the following: true 10 titles suggester Is there a way to specify different count options for different dictionaries ? For example I’d like to have

Re: Max number of documents in update request

2020-07-07 Thread Sidharth Negi
Thanks. This was useful, really appreciate it! :) On Tue, Jul 7, 2020, 8:07 PM Walter Underwood wrote: > Agreed, I do something between 20 and 1000. If the master node is not > handling any search traffic, use twice as many client threads as there are > CPUs in the node. That should get you

Re: Null pointer exception in QueryComponent.MergeDds method

2020-07-07 Thread Jae Joo
Yes, we have timeAllowed=2 sec. On Tue, Jul 7, 2020 at 2:20 PM Mikhail Khludnev wrote: > Still not clear regarding fl param. Does request enabled timeAllowed param? > Anyway debugQuery true should give a clue why "sort_values" are absent in > shard response, note they should be supplied at >

Re: Solr Query

2020-07-07 Thread Furkan KAMACI
Hi Swetha, Given URL is encoded. So, you can decode it before analyzing. Plus character is used for whitespaces when you encode a URL and minus sign represents a negative query in Solr. Kind Regards, Furkan KAMACI On Tue, Jul 7, 2020 at 9:16 PM swetha vemula wrote: > Hi, > > I have an URL and

Re: Null pointer exception in QueryComponent.MergeDds method

2020-07-07 Thread Mikhail Khludnev
Still not clear regarding fl param. Does request enabled timeAllowed param? Anyway debugQuery true should give a clue why "sort_values" are absent in shard response, note they should be supplied at QueryComponent.doFieldSortValues(ResponseBuilder, SolrIndexSearcher). On Tue, Jul 7, 2020 at 4:19

Re: replica deleted but directory remains

2020-07-07 Thread ChienHuaWang
Hi Erick, I also have issue about deleting collections or replicas but the data is still in directory. It not show in admin UI, but data is still in folder and the disk is not clean. Not observing specific error message, could you please advise any other possible reason to fix this? Regards,

Solr Query

2020-07-07 Thread swetha vemula
Hi, I have an URL and I want to break this down and run it in the admin console but I am not what is ++ and - represents in the query.

Re: Replica goes into recovery mode in Solr 6.1.0

2020-07-07 Thread Walter Underwood
This isn’t a support list, so nobody looks at issues. We do try to help. It looks like you have 1 TB of index on a system with 320 GB of RAM. I don’t know what "Shard1 Allocated memory” is, but maybe half of that RAM is used by JVMs or some other process, I guess. Are you running multiple huge

Re: Max number of documents in update request

2020-07-07 Thread Walter Underwood
Agreed, I do something between 20 and 1000. If the master node is not handling any search traffic, use twice as many client threads as there are CPUs in the node. That should get you close to 100% CPU utilization. One thread will be waiting while a batch is being processed and another thread will

Re: Null pointer exception in QueryComponent.MergeDds method

2020-07-07 Thread Jae Joo
8.3.1 the field "id" is for nested document. On Mon, Jul 6, 2020 at 4:17 PM Mikhail Khludnev wrote: > Hi, > What's the version? What's uniqueKey? is it stored? what's fl param? > > On Mon, Jul 6, 2020 at 5:12 PM Jae Joo wrote: > > > I am seeing the nullPointerException in the list

Re: Max number of documents in update request

2020-07-07 Thread Erick Erickson
As many as you can send before blowing up. Really, the question is not answerable. 1K docs? 1G docs? 1 field or 500? And I don’t think it’s a good use of time to pursue much. See: https://lucidworks.com/post/really-batch-updates-solr-2/ If you’re looking at trying to maximize throughput,

Max number of documents in update request

2020-07-07 Thread Sidharth Negi
Hi, Could someone help me with the best way to go about determining the maximum number of docs I can send in a single update call to Solr in a master / slave architecture. Thanks!

LTR feature computation caching

2020-07-07 Thread krishan goyal
Hi, I am adding few features to my LTR model which re-uses the same value for different features. For example, I have features that compare different similarities for each document with the input text: "token1 token2 token3 token4" My features are - No of common terms - No of common

Re: Replica goes into recovery mode in Solr 6.1.0

2020-07-07 Thread vishal patel
Any one is looking my issue? Please guide me. Regards, Vishal Patel From: vishal patel Sent: Monday, July 6, 2020 7:11 PM To: solr-user@lucene.apache.org Subject: Replica goes into recovery mode in Solr 6.1.0 I am using Solr version 6.1.0, Java 8 version and

RE: Time-out errors while indexing (Solr 7.7.1)

2020-07-07 Thread Kommu, Vinodh K.
Hi Eric, Toke, Can you please look at the details shared in my trail email & respond with your suggestions/feedback? Thanks & Regards, Vinodh From: Kommu, Vinodh K. Sent: Monday, July 6, 2020 4:58 PM To: solr-user@lucene.apache.org Subject: RE: Time-out errors while indexing (Solr 7.7.1)

Re: Search for term except within phrase

2020-07-07 Thread Emir Arnautović
Hi Stavros, I didn’t check what’s supported in ComplexPhraseQueryParser but that is wrapper around span queries, so you should be able to do what you need: https://lucene.apache.org/solr/guide/7_6/other-parsers.html#complex-phrase-query-parser