Re: Max number of documents in update request

2020-07-07 Thread Sidharth Negi
to pursue much. See: > > > > https://lucidworks.com/post/really-batch-updates-solr-2/ > > > > If you’re looking at trying to maximize throughput, adding > > client threads that send Solr documents is a better approach. > > > > All that said, I usually just

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!

Query Elevation Component

2020-02-03 Thread Sidharth Negi
Hi, I want to use the Solr query elevation component. Let's say I want to elevate "doc_id" when a user inputs the query "qwerty". I am able to get a prototype to work by filling these values in elevate.xml and hitting the Solr API with q="qwerty". However, in our service, where I want to plug

Analysing Multivalued Fields

2019-12-30 Thread Sidharth Negi
Hi, Is there a way to analyze how multiple values in a multivalued field are being tokenized and processed during indexing? The "Analysis" page on the UI assumes that my multiple comma-separated values is a single value. It filters out the comma and acts as if it's a single value that I

Re: Searches across Cores

2019-08-09 Thread Sidharth Negi
Hi, If the number of cores spanned is low, I guess firing parallel queries and taking union or intersection should work since their schema is the same. Do you notice any perceivable difference in performance? Best, Sidharth On Fri, Aug 9, 2019 at 2:54 PM Komal Motwani wrote: > Hi, > > > > I

Re: Replicate Now Not Working

2019-07-23 Thread Sidharth Negi
s made in solrconfig.xml to > define , you’ll be using managed-schema, not schema.xml. > > Best, > Erick > > > On Jul 23, 2019, at 5:51 AM, Sidharth Negi > wrote: > > > > Hi, > > > > The "replicateNow" button in the admin UI doesn't seem to work sin

Replicate Now Not Working

2019-07-23 Thread Sidharth Negi
Hi, The "replicateNow" button in the admin UI doesn't seem to work since the "schema.xml" (which I modified on slave) is not being updated to reflect that of the master. I have used this button before and it has always cloned index right away. Any ideas on what could be the possible reason for

Re: Understanding Performance of Function Query

2019-05-09 Thread Sidharth Negi
for scores, eg. sqrt(q1) + sqrt(q2) + 0.6*q3. On Wed, Apr 17, 2019 at 6:20 PM Sidharth Negi wrote: > This does indeed reduce the time. but doesn't quite do what I wanted. This > approach penalizes the docs based on "coord" factor. In other words, for a > doc with scores=

Re: Understanding Performance of Function Query

2019-04-17 Thread Sidharth Negi
This does indeed reduce the time. but doesn't quite do what I wanted. This approach penalizes the docs based on "coord" factor. In other words, for a doc with scores=5 on just one query (and nothing on others), the resulting score would now be 5/3 since only one clause matches. 1. I wonder why

Understanding Performance of Function Query

2019-04-09 Thread Sidharth Negi
Hi, I'm working with "edismax" and "function-query" parsers in Solr and have difficulty in understanding whether the query time taken by "function-query" makes sense. The query I'm trying to optimize looks as follows: q={!func sum($q1,$q2,$q3)} where q1,q2,q3 are edismax queries. The QTime

Understanding Performance of Function Query

2019-04-09 Thread Sidharth Negi
Hi, I'm working with "edismax" and "function-query" parsers in Solr and have difficulty in understanding whether the query time taken by "function-query" makes sense. The query I'm trying to optimize looks as follows: q={!func sum($q1,$q2,$q3)} where q1,q2,q3 are edismax queries. The QTime