CPU spikes when sharding

2023-10-12 Thread Sergio García Maroto
Hi everyone, I have at the moment a SolrCloud cluster with 3 servers and few different collections with all of them replicated to the 3 servers without sharding. I am using streaming expressions retrieving and joining data from these collections so everyhting happens on indivial servers as all dat

Re: CPU spikes when sharding

2023-10-12 Thread Deepak Goel
How long are the cpu spikes? On Thu, 12 Oct 2023, 16:47 Sergio García Maroto, wrote: > Hi everyone, > > I have at the moment a SolrCloud cluster with 3 servers and few different > collections with all of them replicated to the 3 servers without sharding. > I am using streaming expressions retrie

Re: quoting/escaping of literal values in SOLR_OPTS ?

2023-10-12 Thread Chris Hostetter
: SOLR_OPTS='-XX:-UseLargePages -Dfoo=bar -Dyak="white space"' : ./solr/packaging/build/dev/bin/solr start -V -f : : Does this work? No. Sorry, i thought i included that in my list of examples... $ SOLR_OPTS='-XX:-UseLargePages -Dfoo=bar -Dyak="white space"' ./solr/packaging/build/dev/bin

Re: quoting/escaping of literal values in SOLR_OPTS ?

2023-10-12 Thread Eric Pugh
We need more BATS tests around all these non common approaches for dealing with parameters. Or, figure out how to do less work in our bash scripts ;-) > On Oct 12, 2023, at 1:22 PM, Chris Hostetter wrote: > > > > > : SOLR_OPTS='-XX:-UseLargePages -Dfoo=bar -Dyak="white space"' > : ./solr/pa

Re: quoting/escaping of literal values in SOLR_OPTS ?

2023-10-12 Thread Ishan Chattopadhyaya
SOLR_OPTS='-XX:-UseLargePages -Dfoo=bar' ./solr/packaging/build/dev/bin/solr start -f -a '-Dyak="white space"' Would this work? I remember that I did something like this for passing that remote debug parameters using -a, but can't remember if they had spaces or not. n Thu, 12 Oct, 2023, 11:06 p

Performance of solr 9.3 vs 8.11

2023-10-12 Thread Natarajan, Rajeswari
Hi, Does anyone see any query performance degradation from 8.11 to 9.3. Please let me know Thanks, Rajeswari

Re: Performance of solr 9.3 vs 8.11

2023-10-12 Thread Andy Lester
> On Oct 12, 2023, at 12:54 PM, Natarajan, Rajeswari > wrote: > > Does anyone see any query performance degradation from 8.11 to 9.3. Please > let me know What is it that you are really asking? Are you wondering if there will be a slowdown if you upgrade from 8.11 to 9.3? If so, we need

Re: Performance of solr 9.3 vs 8.11

2023-10-12 Thread Tomás Fernández Löbbe
Are you asking a general question or did you see degradation and you are trying to dig into it? Some more details can help people understand the problem. There is this Jira[1] I filed about a specific type of degradation with highly distributed indices when using PKIAuthenticationPlugin [1] https

Re: Performance of solr 9.3 vs 8.11

2023-10-12 Thread Tim Funk
In 9 - The JVM security manager is enabled by default. That might be your issue. Disable via adding SOLR_SECURITY_MANAGER_ENABLED=false to your startup -Tim On Thu, Oct 12, 2023 at 1:54 PM Natarajan, Rajeswari wrote: > Hi, > > Does anyone see any query performance degradation from 8.11 to 9.3

Re: Performance of solr 9.3 vs 8.11

2023-10-12 Thread Natarajan, Rajeswari
We saw query response degradation with solr9 , that is why checking , we are not using PKIAuthenticationPlugin. Thanks On 10/12/23, 11:34 AM, "Tomás Fernández Löbbe" mailto:tomasflo...@gmail.com>> wrote: Are you asking a general question or did you see degradation and you are trying to dig in

Re: Performance of solr 9.3 vs 8.11

2023-10-12 Thread Natarajan, Rajeswari
Thanks , will try it out. On 10/12/23, 12:15 PM, "Tim Funk" mailto:funk...@apache.org>> wrote: [You don't often get email from funk...@apache.org . Learn why this is important at https://aka.ms/LearnAboutSenderIdentification

Re: Performance of solr 9.3 vs 8.11

2023-10-12 Thread Natarajan, Rajeswari
We did see query response time increase about 50 ms with the same set up and queries , that is why wanted to check. Thanks On 10/12/23, 11:11 AM, "Andy Lester" mailto:a...@petdance.com>> wrote: > On Oct 12, 2023, at 12:54 PM, Natarajan, Rajeswari >

Re: A general question about update ordering

2023-10-12 Thread Chris Hostetter
: Because the two requests are sent by different services and coordinating those : requests woud likely be difficult, I think the simplest change that would fix : the problem is to use optimistic concurrency, setting the field to 0 on the : "create" request so the request fails if the document al

Re: quoting/escaping of literal values in SOLR_OPTS ?

2023-10-12 Thread Kevin Risden
I ran `shellcheck solr/bin/solr` and one of the warnings jumped out as potentially relevant. I haven't had a chance to check it further yet. In solr/bin/solr line 1224: SOLR_OPTS=(${SOLR_OPTS:-}) ^^ SC2206 (warning): Quote to prevent word splitting/globbing, or split robustl

Re: A general question about update ordering

2023-10-12 Thread Shawn Heisey
On 10/12/23 13:26, Chris Hostetter wrote: i think you're missunderstanding rules of _version_ and how '0' is handled. I'm about 90 percent sure the update requests are not being sent with the _version_ field populated. I am verifying this right as quickly as I can. Thanks, Shawn