Solr Slave node poll blocked in Leader-Follower instructure

2021-04-08 Thread x...@wedoctor.com
Hi All My Company use a leader-follower instructure to solve large index problem, instructure just like picture.1. And data update process such x...@wedoctor.com

Slow execution for Large query in Solr 6.1.0

2021-04-08 Thread vishal patel
Hello, Currently am using Solr version from 6.1.0 and come across one issue. Query which has more ids (around 8000) takes more time to execute. it takes near to 3 seconds. Please refer below details for query and schema file. Query : https://drive.google.com/file/d/1RHnIVsK7m-T8_3it97jLquyfBFm

Solr Slave nodes poll blocked in Leader-Follower instructure

2021-04-08 Thread x...@wedoctor.com
Hi All My Company use a leader-follower instructure to solve large index problem, instructure just like picture (attach file name: instructure.png). And data update process is like: 1. disable follwer polling by sending disablepolling HTTP request 2. index data into offline leader 3. send opti

Slow execution for Large query in Solr 6.1.0

2021-04-08 Thread vishal patel
Hello, Currently am using Solr version from 6.1.0 and come across one issue. Query which has more ids (around 8000) takes more time to execute. it takes near to 3 seconds. Please refer below details for query and schema file. Query : https://drive.google.com/file/d/1RHnIVsK7m-T8_3it97jLquyfBFm

Slow execution for Large query in Solr 6.1.0

2021-04-08 Thread vishal patel
Hello, Currently am using Solr version from 6.1.0 and come across one issue. Query which has more ids (around 8000) takes more time to execute. it takes near to 3 seconds. Please refer below details for query and schema file. Query : https://drive.google.com/file/d/1RHnIVsK7m-T8_3it97jLquyfBFm

Re: Distributed IDF for Solr using ExactStatsCache issue

2021-04-08 Thread thallesr
Not exactly your case, but i stumbled upon the same problem. What i was able to identify was that the problem with different score is because it uses MaxDocs to calculate score and that one sometimes differ between replicas. All the exactStats impl did not solve the problem for me, because they do

Re: facet alias with "duplicate" uniqueKey

2021-04-08 Thread Jan Høydahl
You are right - when you want to search across multiple collections, whether through alias or explicitly, Solr does no longer guarantee the uniqueness of IDs for you, as that is only per collection. Meaning, you need to enforce ID uniqueness yourself. And if using routed aliases, ..."It’s extrem

GetFile failed to process session

2021-04-08 Thread Clay McDonald
Hello all, Can some point me into the right direction to troubleshoot this error message? UTC ERROR GetFile failed to process session due to Could not initialize class sun.nio.fs.LinuxNativeDispatcher; Processor Administratively Yielded Thanks, Clay

Re: NRT Merge Load on NAS SDD (Cloud) Advice

2021-04-08 Thread Jan Høydahl
>- Update rate, and how you do commits? > > Update rates very throughout the day, but range from 20ops/sec to 300ops/sec. > Commits are done using autoCommit on 1 min interval, softCommit on 15min > interval. This means you never explicitly commits from the client? But You autoCommit open

Re: mlt.interestingTerms in MoreLikeThisComponent: standalone vs cloud

2021-04-08 Thread Cassandra Targett
It’s an undocumented limitation that interesting terms are not returned in a distributed query (like SolrCloud would make) when using MLT with the search component. The interesting terms support for the search component was added in 8.2 in  https://issues.apache.org/jira/browse/SOLR-12304. That

Re: NRT Merge Load on NAS SDD (Cloud) Advice

2021-04-08 Thread Karl Stoney
The documents are pretty large yes, 650 fields, circa 20kb/document so at peak (300/sec) that's circa 6meg/sec. ramBufferSizeMB is 512 so we'd be averaging 1 segment every 90 seconds (ish)? >This means you never explicitly commits from the client? But You > autoCommit openSearcher=false ev

Re: facet alias with "duplicate" uniqueKey

2021-04-08 Thread Eran Buchnick
Jan, Thanks a lot for the response. My application's indexer is generating the id based on the raw data and another metadata field that distinguishes that piece of data to the origin. Now I can leverage the concept of the unique key to ensure uniqueness per origin per row (at least that what I did

Nested docs with multi select filtering

2021-04-08 Thread Avremel
Solr: 8.8 I’ve implemented the example in https://blog.griddynamics.com/multi-select-faceting-for-nested-documents-in-solr/”>this tutorial, with the added “fl=*,[child]” for the data to be returned in a hierarchical structure. The v8.0 docs (can’t find it in 8.8) state that in order to combine a

Re: Nested docs with multi select filtering

2021-04-08 Thread Avremel
In some other variation of this problem, sometimes the fields are returned correctly as a hierarchy, but the facets are blank. On Thu, Apr 8, 2021 at 5:06 PM Avremel wrote: > Solr: 8.8 > > I’ve implemented the example in https://blog.griddynamics.com/multi-select-faceting-for-nested-documents-i

Intercept atomic indexing when it indexes other fields from their stored values

2021-04-08 Thread gnandre
Hi, IIRC the way atomic indexing works under the hood is by indexing stored values of all fields again. Is there a way to intercept that and change the value of some field that I want?