On Tue, Jun 22, 2021 at 07:15:58PM +0200, Philipp Falk wrote: > We are facing a performance issue on XFS and other filesystems running on > fast NVMe drives when reading large amounts of data through the page cache > with fio. > > Streaming read performance starts off near the NVMe hardware limit until > around the total size of system memory worth of data has been read. > Performance then drops to around half the hardware limit and CPU load > increases significantly. Using perf, we were able to establish that most of > the CPU load is caused by a spin lock in native_queued_spin_lock_slowpath: [...] > When direct I/O is used, hardware level read throughput is sustained during > the entire experiment and CPU load stays low. Threads stay in D state most > of the time. > > Very similar results are described around half-way through this article > [1]. > > Is this a known issue with the page cache and high throughput I/O? Is there > any tuning that can be applied to get around the CPU bottleneck? We have > tried disabling readahead on the drives, which lead to very bad throughput > (~-90%). Various other scheduler related tuning was tried as well but the > results were always similar. Yes, this is a known issue. Here's what's happening: - The machine hits its low memory watermarks and starts trying to reclaim. There's one kswapd per node, so both nodes go to work trying to reclaim memory (each kswapd tries to handle the memory attached to its node) - But all the memory is allocated to the same file, so both kswapd instances try to remove the pages from the same file, and necessarily contend on the same spinlock. - The process trying to stream the file is also trying to acquire this spinlock in order to add its newly-allocated pages to the file. What you can do is force the page cache to only allocate memory from the local node. That means this workload will only use half the memory in the machine, but it's a streaming workload, so that shouldn't matter? The only problem is, I'm not sure what the user interface is to make that happen. Here's what it looks like inside the kernel: if (cpuset_do_page_mem_spread()) { unsigned int cpuset_mems_cookie; do { cpuset_mems_cookie = read_mems_allowed_begin(); n = cpuset_mem_spread_node(); page = __alloc_pages_node(n, gfp, 0); } while (!page && read_mems_allowed_retry(cpuset_mems_cookie)); so it's something to do with cpusets?