Volker Simonis
Volker Simonis
In general it is always a great idea to use Amazon Corretto :) However in this specific situation I'm afraid it won't help, because Amazon Corretto doesn't have any specific...
@Rtkverma6 can you please share more details about your use case? I.e. provide the command line options you use for JDK 8 and 17, explain the way how you measure...
I agree with @eastig in that you probably ran out of memory mappings. Every Java thread will consume two memory mappings (for the stack itself and for its guard pages)....
Thanks a lot, @christianhaeubl !
@christianhaeubl I could follow your excellent description and reproduce all the steps (except for #12373 which I think is not your fault :) until I ran into the `guarantee` you...
The first commit of this PR has landed in master with [[GR-70171] Add common infrastructure for native GCs such as G1.](https://github.com/oracle/graal/pull/12366) (i.e. #12366).
@jbachorik could you please take a quick look at this issue? Have you seen such crashes before and do you think it is related to Datadog's Java client or do...
Following the disassembly at the PC where the crash occurs (i.e. `0x00007f37b403e9d0`, `libjvm.so+0x9249d0]` or `JavaThread::is_interrupted(bool)+0x0`. Register `rdi` is `0` so we get a SIGSEGV with `si_code: 1 (SEGV_MAPERR)` and `si_addr:...