Re: Spark on Java 17

2023-12-09 Thread Jörn Franke
It is just a goal… however I would not tune the no of regions or region size yet.Simply specify gc algorithm and max heap size.Try to tune other options only if there is a need, only one at at time (otherwise it is difficult to determine cause/effects) and have a performance testing framework in

Re: Spark on Java 17

2023-12-09 Thread Faiz Halde
Thanks, IL check them out Curious though, the official G1GC page https://www.oracle.com/technical-resources/articles/java/g1gc.html says that there must be no more than 2048 regions and region size is limited upto 32mb That's strange because our heaps go up to 100gb and that would require 64mb

Re: Spark on Java 17

2023-12-09 Thread Jörn Franke
If you do tests with newer Java versions you can also try: - UseNUMA: -XX:+UseNUMA. See https://openjdk.org/jeps/345 You can also assess the new Java GC algorithms: - -XX:+UseShenandoahGC - works with terabyte of heaps - more memory efficient than zgc with heaps <32 GB. See also:

RE: Spark on Java 17

2023-12-09 Thread Luca Canali
Hi Faiz, We find G1GC works well for some of our workloads that are Parquet-read intensive and we have been using G1GC with Spark on Java 8 already (spark.driver.extraJavaOptions and spark.executor.extraJavaOptions= “-XX:+UseG1GC”), while currently we are mostly running Spark (3.3 and higher)

Re: Spark Avro Java 17 Compatibility

2022-07-27 Thread Sean Owen
See the documentation at spark.apache.org . Spark 2.4 definitely does not support versions after Java 8. Spark 3.3 supports 17. (General note to anyone mailing the list, don't use a ".invalid" reply-to address) On Wed, Jul 27, 2022 at 7:47 AM Shivaraj Sivasankaran wrote: > Gentle Reminder on

RE: Spark Avro Java 17 Compatibility

2022-07-27 Thread Shivaraj Sivasankaran
Gentle Reminder on the below query. Regards, Shivaraj Sivasankaran. From: Shivaraj Sivasankaran Sent: Tuesday, March 29, 2022 11:54 AM To: user@spark.apache.org Cc: M Vasanthakumar Subject: Spark Avro Java 17 Compatibility Hi, Am Shivaraj from Ericsson India Global Private Limited, we have