RE: Handling Locales in Solr

2021-02-25 Thread Krönert Florian
Hi Markus, thank you a lot for your response, that helps us very much. We will try out the approach of separating the cores by topic only. Kind Regards, Florian -Original Message- From: Markus Jelsma Sent: Mittwoch, 24. Februar 2021 12:27 To: solr-user@lucene.apache.org Subject: Re:

How can I enable scoring on a DocList rather than a DocSet

2021-02-25 Thread krishan goyal
Hi, I want to match and score on a sorted DocList. The use case is something like this - Cache sorted results (with scores) of certain queries in the queryCache (This is a DocList) - New queries are superset of these cached queries and have dynamic scoring clauses - At runtime, I

Rule Based Authorization

2021-02-25 Thread Subhajit Das
Hi There, I am trying to create a rule based authorization for two types of user. Role : Access - power-user : Everything except data change in collections/cores ui-user : UI access to view all data. But no edit access except data change in collections/cores How to implement thi

Add plugins to Solr docker container

2021-02-25 Thread anilkumar panditi
Hi, I am first time user of the apache Solr, and i have brought up the Solr as docker container , and i am unable to install/enable someplugins (authentication,authorization etc).. Could you please help. how to add these plug ins to solr which is running as docker container. Thanks Anil

Re: Add plugins to Solr docker container

2021-02-25 Thread Prabhatika Vij
Hey Anil, If you want to execute anything before Solr starts, you can do the following: - mkdir initdb; echo "echo hi" > initdb/hi.sh docker run -v $PWD/initdb:/docker-entrypoint-initdb.d solr Using the above, you can have any script executed before Solr starts. Source: https://github.com/docker