uschindler commented on PR #14928:
URL: https://github.com/apache/lucene/pull/14928#issuecomment-3062744237

   Basically the problem is: Some thread creates a clone (or a slice, does not 
matter). When the clone or the thread is created, unfortunately the clone's 
private directio buffer is created at the time of cloning by the thread who 
cloned it.
   After that it is handled over to another thread.  As the buffer is confined 
it can't be used after hand-over. So the creation of directio buffer needs to 
be delayed to the time after hand-over was done.
   
   Or is there a way to hand over a confined arena to another thread?


-- 
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: issues-unsubscr...@lucene.apache.org

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


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

Reply via email to