Re: Solr 7.6 frequent OOM with Java 9, G1 and large heap sizes - any tests with Java 13 and the new ZGC?

2020-02-23 Thread Paras Lehana
Hi, We are running another 24 hour test with 8GB JVM and so far it is also > running flawlessly. If this is the case, as Erick mentioned, the failures were probably due to long GC pauses. During couple of my stress testings, I had found that decreasing JVM helps sometimes (it makes GC more frequ

Re: Solr 7.6 frequent OOM with Java 9, G1 and large heap sizes - any tests with Java 13 and the new ZGC?

2020-02-22 Thread tbarkley29
Yes 18% of total physical RAM. The failures in G1GC and CMS setup did seem to be from pause the world. We are using Solr Docker image which is using G1GC by default and we tuned with G1GC. Even with tuning the performance test failed after about 8 hours. With ZGC we had consistent 12 and 24 hour p

Re: Solr 7.6 frequent OOM with Java 9, G1 and large heap sizes - any tests with Java 13 and the new ZGC?

2020-02-21 Thread Erick Erickson
People are certainly interested. You’re running on the bleeding edge of technology, you’re very brave ;). I’m not quite sure how to interpret “memory utilization stays around 18%”. 18% of total physical RAM or heap? I’m assuming the former.. I’m curious, how did CMS and G1GC fail? It’s perfectly

Re: Solr 7.6 frequent OOM with Java 9, G1 and large heap sizes - any tests with Java 13 and the new ZGC?

2020-02-20 Thread tbarkley29
We are currently running performance tests with Solr 8.2/OpenJDK11/ZGC. We've ran multiple successful 12 hour tests and are currently running 24 hour tests. There are three nodes which are 4 cores and 28GB memory, JVM is 16GB. We are getting max ~780 Page Per Second with max of ~8,000 users/min. CP

Re: Solr 7.6 frequent OOM with Java 9, G1 and large heap sizes - any tests with Java 13 and the new ZGC?

2019-10-15 Thread Shawn Heisey
On 10/15/2019 2:49 AM, Vassil Velichkov (Sensika) wrote: I've reduced the JVM heap on one of the shards to 20GB and then simulated some heavy load to reproduce the issue in a faster way. The solr.log ROOT was set to TRACE level, but I can't really see anything meaningful, the solr.log ends @ 07

RE: Solr 7.6 frequent OOM with Java 9, G1 and large heap sizes - any tests with Java 13 and the new ZGC?

2019-10-15 Thread Vassil Velichkov (Sensika)
83/solr/post], SOLR Shards: Array ( [0] => 172.18.1.191:8983/solr/post [1] => 172.18.1.206:8983/solr/post [2] => 172.18.1.198:8983/solr/post ) Cheers, Vassil -Original Message- From: Shawn Heisey Sent: Monday, October 14, 2019 5:22 PM To: solr-user@lucene.apache.org Subject

Re: Solr 7.6 frequent OOM with Java 9, G1 and large heap sizes - any tests with Java 13 and the new ZGC?

2019-10-14 Thread Shawn Heisey
On 10/14/2019 7:18 AM, Vassil Velichkov (Sensika) wrote: After the migration from 6.x to 7.6 we kept the default GC for a couple of weeks, than we've started experimenting with G1 and we've managed to achieve less frequent OOM crashes, but not by much. Changing your GC settings will never pre

RE: Solr 7.6 frequent OOM with Java 9, G1 and large heap sizes - any tests with Java 13 and the new ZGC?

2019-10-14 Thread Vassil Velichkov (Sensika)
Hi Shawn, My answers are in-line below... Cheers, Vassil -Original Message- From: Shawn Heisey Sent: Monday, October 14, 2019 3:56 PM To: solr-user@lucene.apache.org Subject: Re: Solr 7.6 frequent OOM with Java 9, G1 and large heap sizes - any tests with Java 13 and the new ZGC? On

Re: Solr 7.6 frequent OOM with Java 9, G1 and large heap sizes - any tests with Java 13 and the new ZGC?

2019-10-14 Thread Shawn Heisey
and G1, but do not have any opportunities to try it. Have you tried letting Solr use its default garbage collection settings instead of G1? Have you tried Java 11? Java 9 is one of the releases without long term support, so as Erick says, it is not recommended. By some time tonigh

RE: Solr 7.6 frequent OOM with Java 9, G1 and large heap sizes - any tests with Java 13 and the new ZGC?

2019-10-14 Thread Vassil Velichkov (Sensika)
, October 14, 2019 3:03 PM To: solr-user@lucene.apache.org Subject: Re: Solr 7.6 frequent OOM with Java 9, G1 and large heap sizes - any tests with Java 13 and the new ZGC? The filterCache isn’t a single huge allocation, it’s made up of _size_ entries, each individual entry shouldn’t be that big

Re: Solr 7.6 frequent OOM with Java 9, G1 and large heap sizes - any tests with Java 13 and the new ZGC?

2019-10-14 Thread Erick Erickson
, which will take a couple > of days :-) > > Cheers, > Vassil > > -Original Message- > From: Jörn Franke > Sent: Monday, October 14, 2019 1:47 PM > To: solr-user@lucene.apache.org > Subject: Re: Solr 7.6 frequent OOM with Java 9, G1 and large heap sizes

Solr 7.6 frequent OOM with Java 9, G1 and large heap sizes - any tests with Java 13 and the new ZGC?

2019-10-14 Thread Vassil Velichkov (DGM)
>>>> described by Shawn Heisey in Solr 1.4 documentation. Our current setup is as follows: 1. All nodes are running on VMware 6.5 VMs with Debian 9u5 / Java 9 / Solr 7.6 2. Each VM has 6 or 8 x vCPUs, 128GB or 192GB RAM (50% for Java Heap / 50% for OS) and 1 x Solr Core wi

RE: Solr 7.6 frequent OOM with Java 9, G1 and large heap sizes - any tests with Java 13 and the new ZGC?

2019-10-14 Thread Vassil Velichkov (Sensika)
Re: Solr 7.6 frequent OOM with Java 9, G1 and large heap sizes - any tests with Java 13 and the new ZGC? I would try JDK11 - it works much better than JDK9 in general. I don‘t think JDK13 with ZGC will bring you better results. There seems to be sth strange with the JDk version or Solr version and

Re: Solr 7.6 frequent OOM with Java 9, G1 and large heap sizes - any tests with Java 13 and the new ZGC?

2019-10-14 Thread Jörn Franke
and reference to the possible >>>>>>>>>> root-cause, described by Shawn Heisey in Solr 1.4 documentation >>>>> > > Our current setup is as follows: > > 1. All nodes are running on VMware 6.5 VMs with Debian 9u5 / Java 9 / > Sol

Solr 7.6 frequent OOM with Java 9, G1 and large heap sizes - any tests with Java 13 and the new ZGC?

2019-10-14 Thread Vassil Velichkov (Sensika)
>>>> described by Shawn Heisey in Solr 1.4 documentation >>>>> Our current setup is as follows: 1. All nodes are running on VMware 6.5 VMs with Debian 9u5 / Java 9 / Solr 7.6 2. Each VM has 6 or 8 x vCPUs, 128GB or 192GB RAM (50% for Java Heap / 50% for OS) and 1

Re: Java 9 & solr 7.7.0

2019-03-25 Thread Tim Underwood
h JDK 9 and Kerberos that I’m unsure > what > >>>> the resolution is, if there is any. If you use Kerberos, be sure to > test > >>>> that first. > >>>> > >>>> Best, > >>>> Erick > >>>> > >>>&

Re: Java 9 & solr 7.7.0

2019-03-25 Thread Jay Potharaju
eros that I’m unsure what >>>> the resolution is, if there is any. If you use Kerberos, be sure to test >>>> that first. >>>> >>>> Best, >>>> Erick >>>> >>>>> On Mar 23, 2019, at 9:47 AM, Jay Potharaju >>&

Re: Java 9 & solr 7.7.0

2019-03-23 Thread Jay Potharaju
wrote: >>>> >>>> Thanks I missed that info. Will try running with jdk9 and see if it >>> addresses the issue. >>>> Jay >>>> >>>>>> On Mar 23, 2019, at 9:00 AM, Shawn Heisey wrote: >>>>>> >>>>

Re: Java 9 & solr 7.7.0

2019-03-23 Thread Jay Potharaju
e: >>> >>> Thanks I missed that info. Will try running with jdk9 and see if it >> addresses the issue. >>> Jay >>> >>>>> On Mar 23, 2019, at 9:00 AM, Shawn Heisey wrote: >>>>> >>>>> On 3/23/2019 8:12 AM, Jay P

Re: Java 9 & solr 7.7.0

2019-03-23 Thread Tim Underwood
st, > Erick > > > On Mar 23, 2019, at 9:47 AM, Jay Potharaju > wrote: > > > > Thanks I missed that info. Will try running with jdk9 and see if it > addresses the issue. > > Jay > > > >> On Mar 23, 2019, at 9:00 AM, Shawn Heisey wrote: > >>

Re: Java 9 & solr 7.7.0

2019-03-23 Thread Erick Erickson
> On Mar 23, 2019, at 9:47 AM, Jay Potharaju wrote: > > Thanks I missed that info. Will try running with jdk9 and see if it addresses > the issue. > Jay > >> On Mar 23, 2019, at 9:00 AM, Shawn Heisey wrote: >> >>> On 3/23/2019 8:12 AM, Jay Potharaju wrote

Re: Java 9 & solr 7.7.0

2019-03-23 Thread Jay Potharaju
Thanks I missed that info. Will try running with jdk9 and see if it addresses the issue. Jay > On Mar 23, 2019, at 9:00 AM, Shawn Heisey wrote: > >> On 3/23/2019 8:12 AM, Jay Potharaju wrote: >> Can I use java 9 with 7.7.0. I am planning to test if fixes issue with high

Re: Java 9 & solr 7.7.0

2019-03-23 Thread Shawn Heisey
On 3/23/2019 8:12 AM, Jay Potharaju wrote: Can I use java 9 with 7.7.0. I am planning to test if fixes issue with high cpu that I am running into. https://bugs.openjdk.java.net/browse/JDK-8129861 Was solr 7.7 tested with java 9? The info for the 7.0.0 release said it was qualified with Java 9

Java 9 & solr 7.7.0

2019-03-23 Thread Jay Potharaju
Hi Can I use java 9 with 7.7.0. I am planning to test if fixes issue with high cpu that I am running into. https://bugs.openjdk.java.net/browse/JDK-8129861 Was solr 7.7 tested with java 9? Thanks Jay

Re: Java 9 and Solr 6.6

2017-12-04 Thread Sergio García Maroto
Thanks. Very clear not to go with java 9. On 2 December 2017 at 00:37, Shawn Heisey wrote: > On 12/1/2017 12:32 PM, marotosg wrote: > > Would you recommend installing Solr 6.6.1 with Java 9 for a production > > environement? > > Solr 7.x has been tested with Java 9 an

Re: Java 9 and Solr 6.6

2017-12-01 Thread Shawn Heisey
On 12/1/2017 12:32 PM, marotosg wrote: > Would you recommend installing Solr 6.6.1 with Java 9 for a production > environement? Solr 7.x has been tested with Java 9 and should work with no problems.  I believe that code changes were required to achieve this compatibility, so 6.6 might have

Java 9 and Solr 6.6

2017-12-01 Thread marotosg
HI all. Would you recommend installing Solr 6.6.1 with Java 9 for a production environement? Thanks, Sergio -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Java 9

2017-11-09 Thread Furkan KAMACI
> > > -Original message- > > > From:Shawn Heisey > > > Sent: Tuesday 7th November 2017 0:24 > > > To: solr-user@lucene.apache.org > > > Subject: Re: Java 9 > > > > > > On 11/6/2017 3:07 PM, Petersen, Robert (Contr) wrote: > >

Re: Java 9

2017-11-07 Thread Daniel Collins
s > > > > -Original message- > > From:Shawn Heisey > > Sent: Tuesday 7th November 2017 0:24 > > To: solr-user@lucene.apache.org > > Subject: Re: Java 9 > > > > On 11/6/2017 3:07 PM, Petersen, Robert (Contr) wrote: > > > Anyone else been no

RE: Java 9

2017-11-07 Thread Markus Jelsma
Shawn, There won't be a Java 10, we'll get Java 18.3 instead. After 9 it is a guess when CMS and friends are gone. Regards, Markus -Original message- > From:Shawn Heisey > Sent: Tuesday 7th November 2017 0:24 > To: solr-user@lucene.apache.org > Subject: R

Re: Java 9

2017-11-06 Thread Petersen, Robert (Contr)
ay, November 6, 2017 3:07:28 PM To: solr-user@lucene.apache.org Subject: Re: Java 9 : Anyone else been noticing this this msg when starting up solr with java 9? (This is just an FYI and not a real question) : Java HotSpot(TM) 64-Bit Server VM warning: Option UseConcMarkSweepGC was deprecate

Re: Java 9

2017-11-06 Thread Shawn Heisey
On 11/6/2017 3:07 PM, Petersen, Robert (Contr) wrote: > Anyone else been noticing this this msg when starting up solr with java 9? > (This is just an FYI and not a real question) > > Java HotSpot(TM) 64-Bit Server VM warning: Option UseConcMarkSweepGC was > deprecated in versi

Re: Java 9

2017-11-06 Thread Chris Hostetter
: Anyone else been noticing this this msg when starting up solr with java 9? (This is just an FYI and not a real question) : Java HotSpot(TM) 64-Bit Server VM warning: Option UseConcMarkSweepGC was deprecated in version 9.0 and will likely be removed in a future release. : Java HotSpot(TM) 64

Re: Java 9

2017-11-06 Thread Chris Hostetter
: Anyone else been noticing this this msg when starting up solr with java 9? (This is just an FYI and not a real question) : Java HotSpot(TM) 64-Bit Server VM warning: Option UseConcMarkSweepGC was deprecated in version 9.0 and will likely be removed in a future release. : Java HotSpot(TM) 64

Java 9

2017-11-06 Thread Petersen, Robert (Contr)
Hi Guys, Anyone else been noticing this this msg when starting up solr with java 9? (This is just an FYI and not a real question) Java HotSpot(TM) 64-Bit Server VM warning: Option UseConcMarkSweepGC was deprecated in version 9.0 and will likely be removed in a future release. Java HotSpot(TM