This post is going to be an account of few trouble-shootings I did recently to combat various I/O sluggishness.
- Slow system during problems with backup
We have a NFS mount where we push backups of our database daily. Due to some update to the NFS infra, we started seeing throughput of NFS server drastically affected. During this time we saw general sluggishness in the system during backups. Even ssh logins appeared slower. Some boxes had to be rebooted due to this sluggishness as they were too slow to operate on them. First question we wanted to answer, does NFS keep writing if the server is slow? The slow server applied back pressure by sending small advertised window(TCP) to clients. So clients can't push huge writes if server is affected. Client writes to its page cache. The data from page cache is pushed to server when there is a memory pressure or file close is called. If server is slow, client can easily reach upto dirty_background_ratio set for page cache in sysctl. This dictates how much dirty pages cache can have maximum. NFS has its own implementation of bdi(backing device information) https://lwn.net/Articles/217849/. This rolling congestion control applies back pressure to linux user space process which calls write syscall and the user space process stops writing. During this time, kswapd becomes aggressive to keep the dirty pages under dirty_background_ratio and starts writing any data from any filesystem as fast as it can write to disk. kswapd will be aggressive for time NFS is being slow or dirty pages comes below the configured sysctl value. This will impact all apps which needs logging or file write operation as all writes should hit disk. BDI does support controlling how much dirty ratio each device and virtual devices like NFS can take. Looks like treading down that path should avoid such problems - Page cache approaching zero size despite tons of memory
While debugging latency issue, team identified page cache stayed closer to 0G for hours despite usual I/O on system. The system had tons of memory close to 10G. On further debugging I noticed kswapd is in D state on affected systems. kswapd in D state quickly led to this link https://access.redhat.com/solutions/530133. This link said this could be due to any kernel module requesting contiguous memory pages. Contiguous physical memory is something that is not required in today's world post IO_MMU. But if some driver is written with still old practices, they can request contiguous pages. Right now if contiguous pages are not available kswapd is called, kswapd continuously flushes pages to disk till it gets requested number of contiguous memory pages available. This dumb approach of kswapd(captured here https://lwn.net/Articles/100877/) lets it flush as much as it can till it gets contiguous memory. When we triggered online memory compact by setting vm.compact_memory in sysctl, we started noticing page cache to behave normally and kswapd jumped back to S state. We have zeroed down the bug to a driver version of one our hardware vendors using slabtop. - High latency when deleting huge file
We observed spike in latency to our clients when our service actually deletes databases which were no longer needed. Deletion of database actually calls unlink syscall. Though initial assumption assumed deletes caused higher I/O and hence latency, its not how file systems work. Filesystems usually mark blocks free but don't zero them on disk. This is very well the reason why so many disk recovery tools exist. For the lifetime of unlink, we figured out the DB server has a global mutex blocking opening or closing of new tables. This translates to latency. Unlink can take time in filesystems since it has to mark all blocks of file as free despite ext4 boasts significant improvement in performance compared to ext3 due to extents. Based on my understanding only the thread which calls unlink should be affected due to the deletion but global lock kind of spreads the issue across the app.
Comments
Post a Comment