Re: Overseer & Backups - Questions

2020-03-10 Thread Ashwin Ramesh
Hey Aroop, Yes we sent ASYNC= Backups are taken to an EFS drive (AWS's managed NFS) I also thought it was async and Solr can process multiple tasks at once. But the ZK state definitely showed that only the backup task was in progress while all the other tasks were queued up. Regards, Ash On

Re: Overseer & Backups - Questions

2020-03-10 Thread Aroop Ganguly
Backups on hdfs ? These should not be blocking if invoked asynchronously, are u doing them async by passing the async flag? > On Mar 10, 2020, at 3:19 PM, Ashwin Ramesh wrote: > > We use the collection API to invoke backups. The tasks we noticed that > stalled are ADDREPLICA. As expected when

Re: Overseer & Backups - Questions

2020-03-10 Thread Ashwin Ramesh
We use the collection API to invoke backups. The tasks we noticed that stalled are ADDREPLICA. As expected when the backup completed a few hours ago, the task then got completed. Is there some concurrency setting with these tasks? Or is a backup a blocking task? We noticed that the index was still

Re: Overseer & Backups - Questions

2020-03-10 Thread Aroop Ganguly
May we know how you are invoking backups ? > On Mar 9, 2020, at 11:53 PM, Ashwin Ramesh wrote: > > Hi everybody, > > Quick Specs: > - Solr 7.4 Solr Cloud > - 30gb index on 8 shards Tlog/Pull > > We run daily backups on our 30gb index and noticed that the overseer does > not process other jobs

Re: Solr 8.2.0 - Schema issue

2020-03-10 Thread Joe Obernberger
Erick - tried this, had to run it async, but it's been running for over 24 hours on one collection with: { "responseHeader":{ "status":0, "QTime":18326}, "status":{ "state":"submitted", "msg":"found [5] in submitted tasks"}} I don't see anything in the logs. -Joe On

Re: How to query with FL field lower than some value?

2020-03-10 Thread Munendra S N
fq={!frange u=0.5 incu=false}dist(2, v1, v2 , 0.8, ) This will return only products where distance is less than 0.5(excluded). Do you also have requirements to display the distance only then you would field aliasing. As this truncates search results and default sorting is done, this

Re: How to query with FL field lower than some value?

2020-03-10 Thread GTHell
But the fq can't use the alias field call score. Anyway, is the performance the same if I just sort the dist() function and get only 3 results? -- Sent from: https://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Solr Search

2020-03-10 Thread Suresh
Hi Team, Greetings of the day. I would like to subscribe for knowledge and configuration about the Solr search for better user experience. Kindly guide me to further proceed. Regards,

Re: Atomic Update and Optimization and segments

2020-03-10 Thread Jörn Franke
How do you do the atomic updates? I discovered a bug when doing them via DIH or Scriptupdateprocessor (only this one! The atomic one is fine) that leads to infinite index growth when doing atomic updates > Am 10.03.2020 um 13:28 schrieb Kayak28 : > > Hello, Community: > > Currently, my

Atomic Update and Optimization and segments

2020-03-10 Thread Kayak28
Hello, Community: Currently, my index grows up to almost 1T, and I would like to minimize my index. I know I have a few fields that are not used or rarely used, so I want to delete them. I have tried to delete these fields by the atomic update, sending the following JSON for example. { "id":"1",

Re: How to query with FL field lower than some value?

2020-03-10 Thread Munendra S N
If you are looking to filter out all those products with greater than or equal to 0.5, you could use https://lucene.apache.org/solr/guide/8_4/other-parsers.html#function-range-query-parser Function range query with the upper limit being 0.5 which could be added as fq Regards, Munendra S N On

Re: Using QT param with /select

2020-03-10 Thread Atita Arora
Hi, Thanks for looping back in. We use Master-Slave! I resolved this one with handleSelect=true , removing /select handler from config and created another requesthandler (with a different name - other than select) and marking that as default="true". Now all the requests with qt param are handled

Solr range search queries

2020-03-10 Thread Niharika
hello, I have two field declared in schema xml as * * I want to generate a query to find all the result in specific range for longitude and latitude My query looks like *latitude:[47.010225655683485 TO 52.40241887397332] AND longitude:[-2.021484375004 TO 14.63378906252]* the

How to query with FL field lower than some value?

2020-03-10 Thread GTHell
I use score:dist(2, v1, v2 , 0.8, ) in fl to calculate the distance. It gave me the result I want but I only want the result score that is below 0.5. How would I achieve that? -- Sent from: https://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Core keeps getting closed

2020-03-10 Thread wezy
Hello, where having a problem ever since our upgrade to SOLR 7.5 First we have this error directly followed by the last error just keeps repeating. Sometimes we go

Re: Using QT param with /select

2020-03-10 Thread Mikhail Khludnev
Hello, Atita. My question here is that on Solr 6.2.6 to enable using 'qt' param I need to > do handleSelect=false Can you elaborate on that? What exactly happens? Also, please clarify whether you use SolrCloud or standalone? On Mon, Mar 2, 2020 at 7:37 PM Atita Arora wrote: > Hi, > > I am

Overseer & Backups - Questions

2020-03-10 Thread Ashwin Ramesh
Hi everybody, Quick Specs: - Solr 7.4 Solr Cloud - 30gb index on 8 shards Tlog/Pull We run daily backups on our 30gb index and noticed that the overseer does not process other jobs on it's task list while the backup is being taken. They remain on the pending list (in ZK). Is this expected? Also

Re: Possible performance bug - JSON facet - numBuckets:true

2020-03-10 Thread Mikhail Khludnev
Hello, Artur. Thanks for your interest. Perhaps, we can amend doc mentioning this effect. In long term it can be optimized by adding a proper condition. Both patches are welcome. On Wed, Feb 12, 2020 at 10:48 PM Rudenko, Artur wrote: > Hello everyone, > I'm am currently investigating a