From: Andres Freund <andres@anarazel.de>
To: Rik van Riel <riel@redhat.com>
Cc: Johannes Weiner <hannes@cmpxchg.org>,
linux-mm@kvack.org, linux-kernel@vger.kernel.org,
Vlastimil Babka <vbabka@suse.cz>
Subject: Re: Unhelpful caching decisions, possibly related to active/inactive sizing
Date: Fri, 12 Feb 2016 20:35:53 +0100 [thread overview]
Message-ID: <20160212193553.6pugckvamgtk4x5q@alap3.anarazel.de> (raw)
In-Reply-To: <20160212124653.35zwmy3p2pat5trv@alap3.anarazel.de>
On 2016-02-12 13:46:53 +0100, Andres Freund wrote:
> I'm wondering why pages that are repeatedly written to, in units above
> the page size, are promoted to the active list? I mean if there never
> are any reads or re-dirtying an already-dirty page, what's the benefit
> of moving that page onto the active list?
We chatted about this on IRC and you proposed testing this by removing
FGP_ACCESSED in grab_cache_page_write_begin. I ran tests with that,
after removing the aforementioned code to issue posix_fadvise(DONTNEED)
in postgres.
base (4.5-rc2+10)
latency average = 3.079 ms
latency stddev = 8.269 ms
tps = 10384.545914 (including connections establishing)
tps = 10384.866341 (excluding connections establishing)
inactive/active patch:
latency average = 2.931 ms
latency stddev = 7.683 ms
tps = 10908.905039 (including connections establishing)
tps = 10909.256946 (excluding connections establishing)
inactive/active patch + no FGP_ACCESSED in grab_cache_page_write_begin:
latency average = 2.806 ms
latency stddev = 7.871 ms
tps = 11392.893213 (including connections establishing)
tps = 11393.839826 (excluding connections establishing)
Here the active/inactive lists didn't change as much as I hoped. A bit
of reading made it apparent that the workingset logic in
add_to_page_cache_lru() defated that attempt, by moving an previously
discarded page directly into the active list. I added a variant of
add_to_page_cache_lru() that accepts fgp_flags and only does the
workingset check if FGP_ACCESSED is set. That results in:
inactive/active patch + no FGP_ACCESSED in grab_cache_page_write_begin * add_to_page_cache_lru:
latency average: 2.292 ms
latency stddev: 6.487 ms
tps = 13940.530898 (including connections establishing)
tps = 13941.774874 (excluding connections establishing)
that's only slightly worse than doing explicit posix_fadvise(DONTNEED)
calls... Pretty good.
To make an actually usable patch out of this it seems we'd have to add a
'partial' argument to grab_cache_page_write_begin(), so writes to parts
of a page still cause the pages to be marked active. Is it preferrable
to change all callers of grab_cache_page_write_begin and
add_to_page_cache_lru or make them into wrapper functions, and call the
real deal when it matters?
I do think that that's a reasonable algorithmic change, but nonetheless
its obviously possible that such changes regress some workloads. What's
the policy around testing such things?
Greetings,
Andres Freund
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2016-02-12 19:35 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-09 16:52 Unhelpful caching decisions, possibly related to active/inactive sizing Andres Freund
2016-02-09 22:42 ` Johannes Weiner
2016-02-11 20:34 ` Rik van Riel
2016-02-12 12:46 ` Andres Freund
2016-02-12 19:35 ` Andres Freund [this message]
2016-02-16 19:29 ` Johannes Weiner
2016-02-17 21:17 ` Rik van Riel
2016-02-19 22:19 ` Andres Freund
2016-02-12 12:56 ` Andres Freund
2016-02-12 20:24 ` Johannes Weiner
2016-02-19 22:07 ` Andres Freund
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160212193553.6pugckvamgtk4x5q@alap3.anarazel.de \
--to=andres@anarazel.de \
--cc=hannes@cmpxchg.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=riel@redhat.com \
--cc=vbabka@suse.cz \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).