Difference Core Reload SolR 5 vs 8

2022-03-28 Thread Moll, Dr. Andreas
Hi, we are currently switching from SolR 5 to SolR 8. Has the behaviour of core reload changed between these versions? We have a production server that creates and modifies the index. This directory is then mounted read only for the SolR servers. With SolR 5, we could call a core reload and it

Querying for complex phrases in order

2022-03-28 Thread Paul Mayer
Dear Solr users, I am new to Solr and am trying to port search functionality from another system to Solr 7.5. In particular, what we want to support are queries of the following nature: (foo* [OR] bar) [any text] baz Where foo, bar and baz could be phrases (rather than just terms) and, crucially

Re: [EXTERNAL] Re: IllegalArgumentException: Unknown directory

2022-03-28 Thread matthew sporleder
My only other guess (and I mean wild guess) is that because the error is for a *lock* that it is actually a timeout or similar locking error with a bad error message. On Fri, Mar 25, 2022 at 11:11 AM Oakley, Craig (NIH/NLM/NCBI) [C] wrote: > Thanks for the quick reply > > grep -i -c OutOfMemory

How to sort Solr search results by hour/day/week/month/year views

2022-03-28 Thread gnandre
I have a search interface that searches for videos. There is a filter there that can sort the results based on views for last hour, last day, last week, last month and last year. Is there a way to achieve this sorting without always needing to update the index? E.g. After each specific duration exp

Re: How to sort Solr search results by hour/day/week/month/year views

2022-03-28 Thread Walter Underwood
You could put the view counts in an external file field. That is what that was designed for. Making it work in a Solr Cloud cluster isn’t very clean. You’ll need to update the file on each node. But it should work. It has been a while since I’ve used it. https://solr.apache.org/guide/8_11/work