Hi,
MappedPageImpl current using sun.misc.Cleaner to clean up the mapped byte buffer of the index/data page files.
class sun.misc.Cleaner doest not exist in JDK11, for those app run on JDK11 will have issue on disk release.
with Ubuntu 18/OpenJDK11, use below command you can see the deleted files, and there didn't didn't release, until restart the app.
lsof -p | grep DEL
use htop command will see the process with high VIRT (run to 100G+)
There have sun.misc.Unsafe.invokeCleaner(java.nio.ByteBuffer directBuffer) available able to resolve that issue.
patch.diff.tar.gz