Re: upgrading from solr4 to solr8 searches taking 4 to 10 times as long to return

2019-09-08 Thread Günter Hipler
Hi what about this https://issues.apache.org/jira/browse/SOLR-8096 seems still unresolved issue? With our migration from version 4 to 7 last year we experienced similar problems. Günter On 08.09.19 06:09, Russell Bahr wrote: Hi David and Toke, Thank you both for your input. I will be in DC

Re: upgrading from solr4 to solr8 searches taking 4 to 10 times as long to return

2019-09-08 Thread Toke Eskildsen
Günter Hipler wrote: > what about this > https://issues.apache.org/jira/browse/SOLR-8096 > seems still unresolved issue? Unfortunately Russell has de-shared the solrconfig.xml, but as far as I remember it does not trigger faceting. > With our migration from version 4 to 7 last year we experienc

Re: upgrading from solr4 to solr8 searches taking 4 to 10 times as long to return

2019-09-08 Thread Günter Hipler
Thanks for this information Toke - the library community, your domain too, is happy to hear this. I have seen you have done a lot of work at the end of version 7 for version 8 but was not sure if it is related to this issue. Best wishes from Basel, Günter On 08.09.19 19:42, Toke Eskildsen wr

Sample JWT Solr configuration

2019-09-08 Thread Tyrone
I have Solr 8.1 installed, and I have this sample JWT HEADER:ALGORITHM & TOKEN TYPE { "alg": "HS256", "typ": "JWT" } PAYLOAD:DATA { "sub": "1234567890", "name": "John Doe", "iat": 1516239022 } The secret key is "your-256-bit-secret" Which generates the encoded JWT of eyJhbGciOiJIUzI1NiIsInR5cCI

Re: Query field alias - issue with circular reference

2019-09-08 Thread David Smiley
No but this seems like a decent enhancement request. ~ David Smiley Apache Lucene/Solr Search Developer http://www.linkedin.com/in/davidwsmiley On Fri, Aug 9, 2019 at 3:07 AM Jaroslaw Rozanski wrote: > Hi Folks, > > > > Question about query field aliases. > > > > Assuming one has fields: > >

Issue with delete

2019-09-08 Thread Jayadevan Maymala
Hello All, I have a 3-node Solr cluster using a 3-node Zoookeeper system. Solr Version is 7.3.0. We have batch deletes which were working a few days ago. All of a sudden, they stopped working (I did run a yum update on the client machine - not sure if it did anything to the Guzzle client). The del

Re: Issue with delete

2019-09-08 Thread Jörn Franke
Do you commit after running the delete? > Am 09.09.2019 um 06:59 schrieb Jayadevan Maymala : > > Hello All, > > I have a 3-node Solr cluster using a 3-node Zoookeeper system. Solr Version > is 7.3.0. We have batch deletes which were working a few days ago. All of a > sudden, they stopped working

Re: Query terms and the match state

2019-09-08 Thread Scott Stults
Lucene has a SynonymQuery and a BlendedTermQuery that do something like you want in different ways. However, if you want to keep your existing schema and do this through Solr you can use the constant score syntax in edismax on each term: q=name:(corsair)^=1.0 name:(ddr)^=1.0 manu:(corsair)^=1.0 ma

Re: Sample JWT Solr configuration

2019-09-08 Thread Jan Høydahl
In your security.json, add a JWK matching your signing algorithm, using the “jwk” JSON key. Example: “jwk” : { "kty" : "oct", "kid" : "0afee142-a0af-4410-abcc-9f2d44ff45b5", "alg" : "HS256", "k" : "FdFYFzERwC2uCBB46pZQi4GG85LujR8obt-KWRBICVQ" } Of course you need to find a way to encode your pa