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 <pid> | 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](https://github.com/bulldog2011/bigqueue/files/5406786/patch.diff.tar.gz)