Solr operator and side car container

2023-12-12 Thread Joel Bernstein
Hi, Is there any facility in the Solr operator for adding a sidecar container that runs along side the solr container? I see there is an initContainer but I don't see anything for adding another container. Thanks, Joel

Re: Implementing Authentication for Solr Indexing and Querying in a Spring Boot Project

2023-12-12 Thread Uday Kumar
Hello all, Do we have any update on best practices related to above mentioned challenges? *Thanks & Regards,* *Uday Kumar* On Mon, Dec 11, 2023 at 2:18 PM Uday Kumar wrote: > Hello all, > > We are working on a project which involves two processes, indexing > documents into Solr cloud and quer

Re: Java Upgrade process

2023-12-12 Thread Shawn Heisey
On 12/10/23 20:36, Jim Morgan wrote: Now we're looking at java. Its currently running on openjdk-8. I've tried upgrading to openjdk-11 and openjdk-13. The process, as this is Ubuntu is basically. Don't use Java 13. It is a non-LTS release. Non-LTS releases are only supported for 6 months, so

Re: Solr connection refused error

2023-12-12 Thread Shawn Heisey
On 12/11/23 21:25, Anuj Bhargava wrote: http://xxx.xxx.xx.xxx:8983/solr/#/ I often get the following error - This site can’t be reached xxx.xxx.xx.xxx refused to connect. Try: Checking the connection Checking the proxy and the firewall ERR_CONNECTION_REFUSED 8983 port is open There's not a

Re: Java Upgrade process

2023-12-12 Thread Chris Hostetter
That's the console output, where the start script is waiting for the port to come up. what does the actual solr log file (written by the java process) say? https://solr.apache.org/guide/solr/latest/deployment-guide/taking-solr-to-production.html#log-settings : Date: Tue, 12 Dec 2023 10:57:37 +

Re: Solr 9.4 - Switching _default configset to classic schema issue

2023-12-12 Thread Andreas Hubold
Hi, just stumbled upon this: This looks like open bug https://issues.apache.org/jira/browse/SOLR-16203 The workaround would be to configure StopFilterFactory and similar analysis factories with a class attribute and not the name attribute. For example, use class="solr.StopFilterFactory" inst

Re: Implementing Authentication for Solr Indexing and Querying in a Spring Boot Project

2023-12-12 Thread Shawn Heisey
On 12/11/23 01:48, Uday Kumar wrote: *1. Authentication for Indexing:* We are currently using the SolrJ client for indexing documents into the Solr index. However, with authentication enabled at Solr, we are uncertain about the best practices for implementing authentication within the SolrJ clie

Compatibility of Solr Cloud v8.11.1 with Zookeeper v3.8.1

2023-12-12 Thread Kevin Sante
Hello, We are currently using Solr cloud with solr v8.11.1 and zookeeper v3.6.1. We want to upgrade zookeeper to v3.8.1. Any compatibility issues between zk v3.8.1 with solr v8.11.1. We know the recommendation is to use Solr v9.2. However, we wonder if this cause combability with our Drupal 10

Re: Solr 9.4 - Switching _default configset to classic schema issue

2023-12-12 Thread Eric Pugh
Would you be interested in opening a PR for this? I’d love to see what that looks like! > On Dec 12, 2023, at 3:00 PM, Andreas Hubold > wrote: > > Hi, > > just stumbled upon this: This looks like open bug > https://issues.apache.org/jira/browse/SOLR-16203 > > The workaround would be to co

Re: Solr connection refused error

2023-12-12 Thread Anuj Bhargava
The solr stops too often and I have to restart it. Is there a script which checks if solr is running and if not it starts automatically. Regards, Anuj On Tue, 12 Dec 2023 at 23:29, Shawn Heisey wrote: > On 12/11/23 21:25, Anuj Bhargava wrote: > > http://xxx.xxx.xx.xxx:8983/solr/#/ > > > > I o

Re: Solr connection refused error

2023-12-12 Thread Deepak Goel
On Wed, Dec 13, 2023 at 11:03 AM Anuj Bhargava wrote: > The solr stops too often and I have to restart it. Is there a script which > checks if solr is running and if not it starts automatically. > You need to find why Solr is stopping too often. Restarting it is not a graceful option. > > Reg

Numfound Missmatch with Implicit collection

2023-12-12 Thread bilal qureshi
Hi, I'm using solr 9.1.1 and facing issue in numFound with Implicit collection. observation is when I send query to implicit collection with different rows count, it returns different numFound each time. And with the same query on Composite collection it works fine and returns correct numFound. R

Re: Implementing Authentication for Solr Indexing and Querying in a Spring Boot Project

2023-12-12 Thread Uday Kumar
Thank You Shawn,will go through suggestions provided! *Thanks & Regards,* *Uday Kumar* On Wed, Dec 13, 2023 at 1:35 AM Shawn Heisey wrote: > On 12/11/23 01:48, Uday Kumar wrote: > > *1. Authentication for Indexing:* > > > > We are currently using the SolrJ client for indexing documents into th