gortiz commented on issue #12286:
URL: https://github.com/apache/pinot/issues/12286#issuecomment-1935438524

   This kind of problems should not produce a SIGSEV. I think this may be 
related to using LArray buffers when the index is larger than 2GBs.
   
   One of the issues of LArray is that it doesn't check memory offsets and that 
may produce SIGSEVs. The other issue of LArrays is that it doesn't work in Java 
> 15. Therefore we created our own library to be able to run in modern Java 
versions.
   
   We can tests whether the issue is fired by LArray by changing the library 
used. This is not going to fix the issue, but it is not going to kill the 
process in case it happens. Could you run the same job on a Pinot cluster using 
Java 17 or 21? Alternatively our library can be used in Java 11 by changing the 
value of pinot server property `pinot.offheap.buffer.factory`.
   
   ```
   pinot.offheap.buffer.factory = org.apache.pinot.segment.spi.memory.unsafe
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org
For additional commands, e-mail: commits-h...@pinot.apache.org

Reply via email to