uschindler commented on issue #12061: URL: https://github.com/apache/lucene/issues/12061#issuecomment-1369697423
Hi, this is not a bug in Lucene, it can be two possible problems: - You are closing IndexReaders while queries are still running. Due to limitations of unmapping memory mapped files in Java 11 (no thread safe unmapping), this may cause SIGSEGV or SIGBUS. This is well known. To prevent this consider upgrading to Lucene 9.4 and Java 19 with preview options enabled. - The code looks like it tries to access Netty files, so it looks like not related to Lucene. To me this looks like a mixture of using netty and possibly also closing index files while there's still access from other threads. -- 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