MDEV-5746: Slow file extend when innodb_use_fallocate=1 and SSD
file storage. Analysis: posix_fallocate was called using 0 as offset and len as desired size. This is not optimal for SSDs. Fix: Call posix_fallocate with correct offset i.e. current file size and extend the file from there len bytes.
Showing
Please register or sign in to comment