Re: [RFC] Add swappiness argument to memory.reclaim
From: Wei Xu <hidden>
Date: 2022-05-19 05:44:26
Also in:
linux-mm
On Tue, May 17, 2022 at 1:06 PM Johannes Weiner [off-list ref] wrote:
Hi Yosry, On Tue, May 17, 2022 at 11:06:36AM -0700, Yosry Ahmed wrote:quoted
On Mon, May 16, 2022 at 11:56 PM Michal Hocko [off-list ref] wrote:quoted
On Mon 16-05-22 15:29:42, Yosry Ahmed wrote:quoted
The discussions on the patch series [1] to add memory.reclaim has shown that it is desirable to add an argument to control the type of memory being reclaimed by invoked proactive reclaim using memory.reclaim. I am proposing adding a swappiness optional argument to the interface. If set, it overwrites vm.swappiness and per-memcg swappiness. This provides a way to enforce user policy on a stateless per-reclaim basis. We can make policy decisions to perform reclaim differently for tasks of different app classes based on their individual QoS needs. It also helps for use cases when particularly page cache is high and we want to mainly hit that without swapping out.Can you be more specific about the usecase please? Also how do youFor example for a class of applications it may be known that reclaiming one type of pages anon/file is more profitable or will incur an overhead, based on userspace knowledge of the nature of the app.I want to make sure I understand what you're trying to correct for with this bias. Could you expand some on what you mean by profitable? The way the kernel thinks today is that importance of any given page is its access frequency times the cost of paging it. swappiness exists to recognize differences in the second part: the cost involved in swapping a page vs the cost of a file cache miss. For example, page A is accessed 10 times more frequently than B, but B is 10 times more expensive to refault/swapin. Combining that, they should be roughly equal reclaim candidates. This is the same with the seek parameter of slab shrinkers: some objects are more expensive to recreate than others. Once corrected for that, presence of reference bits can be interpreted on an even level. While access frequency is clearly a workload property, the cost of refaulting is conventionally not - let alone a per-reclaim property! If I understand you correctly, you're saying that the backing type of a piece of memory can say something about the importance of the data within. Something that goes beyond the work of recreating it. Is that true or am I misreading this? If that's your claim, isn't that, if it happens, mostly incidental? For example, in our fleet we used to copy executable text into anonymous memory to get THP backing. With file THP support in the kernel, the text is back in cache. The importance of the memory *contents* stayed the same. The backing storage changed, but beyond that the anon/file distinction doesn't mean anything. Another example. Probably one of the most common workload structures is text, heap, logging/startup/error handling: hot file, warm anon, cold file. How does prioritizing either file or anon apply to this? Maybe I'm misunderstanding and this IS about per-workload backing types? Maybe the per-cgroup swapfiles that you guys are using?quoted
If most of what an app use for example is anon/tmpfs then it might be better to explicitly ask the kernel to reclaim anon, and to avoid reclaiming file pages in order not to hurt the file cache performance.Hm. Reclaim ages those pools based on their size, so a dominant anon set should receive more pressure than a small file set. I can see two options why this doesn't produce the desired results: 1) Reclaim is broken and doesn't allocate scan rates right, or 2) Access frequency x refault cost alone is not a satisfactory predictor for the value of any given page. Can you see another? I can sort of see the argument for 2), because it can be workload dependent: a 50ms refault in a single-threaded part of the program is likely more disruptive than the same refault in an asynchronous worker thread. This is a factor we're not really taking into account today. But I don't think an anon/file bias will capture this coefficient?
It essentially provides the userspace proactive reclaimer an ability to define its own reclaim policy by adding an argument to specify which type of pages to reclaim via memory.reclaim. Even though the page type (file vs anon) doesn't always accurately reflect the performance impact of a page, the separation of different types of pages is still meaningful w.r.t reclaim. The reclaim costs of anon and file pages are different. With zswap, anon pages can be reclaimed via memory compression, which doesn't involve I/Os, but reclaiming dirty file pages needs I/O for writeback. The access patterns of anon and file pages are also different: Anon pages are mostly mapped and accessed directly by CPU, whereas file pages are often accessed via read/write syscalls. A single accessed (young) bit can carry very different performance weights for different types of pages. Because anon/tmpfs pages account for the vast majority of memory usage in Google data centers and our proactive reclaim algorithm is tuned only for anon pages, we'd like to have the option to only proactively reclaim anon pages. It is not desirable to set the global vm.swappiness to disable file page reclaim because we still want to use the kernel reclaimer to reclaim file pages when proactive reclaimer fails to keep up with the memory demand.