Linux Btrfs filesystem development
 help / color / mirror / Atom feed
From: Boris Burkov <boris@bur.io>
To: David Sterba <dsterba@suse.cz>
Cc: linux-btrfs@vger.kernel.org, kernel-team@fb.com
Subject: Re: [PATCH v3] btrfs: try to search for data csums in commit root
Date: Tue, 15 Oct 2024 11:01:44 -0700	[thread overview]
Message-ID: <20241015180144.GA1731591@zen.localdomain> (raw)
In-Reply-To: <20241015154320.GI1609@twin.jikos.cz>

On Tue, Oct 15, 2024 at 05:43:20PM +0200, David Sterba wrote:
> On Mon, Oct 14, 2024 at 04:08:31PM -0700, Boris Burkov wrote:
> > If you run a workload like:
> > - a cgroup that does tons of data reading, with a harsh memory limit
> > - a second cgroup that tries to write new files
> > e.g.:
> > https://github.com/boryas/scripts/blob/main/sh/noisy-neighbor/run.sh
> > 
> > then what quickly occurs is:
> > - a high degree of contention on the csum root node eb rwsem
> > - memory starved cgroup doing tons of reclaim on CPU.
> > - many reader threads in the memory starved cgroup "holding" the sem
> >   as readers, but not scheduling promptly. i.e., task __state == 0, but
> >   not running on a cpu.
> > - btrfs_commit_transaction stuck trying to acquire the sem as a writer.
> > 
> > This results in VERY long transactions. On my test system, that script
> > produces 20-30s long transaction commits. This then results in
> > seriously degraded performance for any cgroup using the filesystem (the
> > victim cgroup in the script).
> > 
> > This reproducer is a bit silly, as the villanous cgroup is using almost
> > all of its memory.max for kernel memory (specifically pagetables) but it
> > sort of doesn't matter, as I am most interested in the btrfs locking
> > behavior. It isn't an academic problem, as we see this exact problem in
> > production at Meta with one cgroup over memory.max ruining btrfs
> > performance for the whole system.
> > 
> > The underlying scheduling "problem" with global rwsems is sort of thorny
> > and apparently well known. e.g.
> > https://lpc.events/event/18/contributions/1883/
> > 
> > As a result, our main lever in the short term is just trying to reduce
> > contention on our various rwsems. In the case of the csum tree, we can
> > either redesign btree locking (hard...) or try to use the commit root
> > when we can. Luckily, it seems likely that many reads are for old extents
> > written many transactions ago, and that for those we *can* in fact
> > search the commit root!
> > 
> > This change detects when we are trying to read an old extent (according
> > to extent map generation) and then wires that through bio_ctrl to the
> > btrfs_bio, which unfortunately isn't allocated yet when we have this
> > information. Luckily, we don't need this flag in the bio after
> > submitting, so we can save space by setting it on bbio->bio.bi_flags
> > and clear before submitting, so the block layer is unaffected.
> > 
> > When we go to lookup the csums in lookup_bio_sums we can check this
> > condition on the btrfs_bio and do the commit root lookup accordingly.
> > 
> > With the fix, on that same test case, commit latencies no longer exceed
> > ~400ms on my system.
> > 
> > Signed-off-by: Boris Burkov <boris@bur.io>
> > ---
> > Changelog:
> > v3:
> > - add some simple machinery for setting/getting/clearing btrfs private
> >   flags in bi_flags
> > - clear those flags before bio_submit (ensure no-op wrt block layer)
> > - store the csum commit root flag there to save space
> > v2:
> > - hold the commit_root_sem for the duration of the entire lookup, not
> >   just per btrfs_search_slot. Note that we can't naively do the thing
> >   where we release the lock every loop as that is exactly what we are
> >   trying to avoid. Theoretically, we could re-grab the lock and fully
> >   start over if the lock is write contended or something. I suspect the
> >   rwsem fairness features will let the commit writer get it fast enough
> >   anyway.
> > 
> > 
> > ---
> >  fs/btrfs/bio.c       | 20 ++++++++++++++++++++
> >  fs/btrfs/bio.h       |  7 +++++++
> >  fs/btrfs/extent_io.c | 21 +++++++++++++++++++++
> >  fs/btrfs/file-item.c | 10 ++++++++++
> >  4 files changed, 58 insertions(+)
> > 
> > diff --git a/fs/btrfs/bio.c b/fs/btrfs/bio.c
> > index 5d3f8bd406d9..24c159ef3854 100644
> > --- a/fs/btrfs/bio.c
> > +++ b/fs/btrfs/bio.c
> > @@ -71,6 +71,25 @@ struct btrfs_bio *btrfs_bio_alloc(unsigned int nr_vecs, blk_opf_t opf,
> >  	return bbio;
> >  }
> >  
> > +void btrfs_bio_set_private_flag(struct btrfs_bio *bbio, unsigned short flag) {
> > +	ASSERT(flag & BTRFS_BIO_PRIVATE_FLAG_MASK);
> > +	bbio->bio.bi_flags |= flag;
> > +}
> > +
> > +void btrfs_bio_clear_private_flag(struct btrfs_bio *bbio, unsigned short flag) {
> > +	ASSERT(flag & BTRFS_BIO_PRIVATE_FLAG_MASK);
> > +	bbio->bio.bi_flags &= ~flag;
> > +}
> > +
> > +void btrfs_bio_clear_private_flags(struct btrfs_bio *bbio) {
> > +	bbio->bio.bi_flags &= ~BTRFS_BIO_PRIVATE_FLAG_MASK;
> > +}
> > +
> > +bool btrfs_bio_private_flagged(struct btrfs_bio *bbio, unsigned short flag) {
> > +	ASSERT(flag & BTRFS_BIO_PRIVATE_FLAG_MASK);
> > +	return bbio->bio.bi_flags & flag;
> > +}
> 
> This is good, open coding the flag updates is trivial but the assertions
> make ti much better.
> 
> Though using two almost identical names for clearing the private flag,
> one with assertion and one without is confusing and hard to spot in the
> code. Also I don't see where is btrfs_bio_clear_private_flag() used at
> all.
> 

There's no use of it, I just figured if I wrote the rest, I should write
that one too, with the checking and stuff, so that it's a complete API.

> > +
> >  static struct btrfs_bio *btrfs_split_bio(struct btrfs_fs_info *fs_info,
> >  					 struct btrfs_bio *orig_bbio,
> >  					 u64 map_length)
> > @@ -493,6 +512,7 @@ static void btrfs_submit_mirrored_bio(struct btrfs_io_context *bioc, int dev_nr)
> >  static void btrfs_submit_bio(struct bio *bio, struct btrfs_io_context *bioc,
> >  			     struct btrfs_io_stripe *smap, int mirror_num)
> >  {
> > +	btrfs_bio_clear_private_flags(btrfs_bio(bio));
> >  	if (!bioc) {
> >  		/* Single mirror read/write fast path. */
> >  		btrfs_bio(bio)->mirror_num = mirror_num;
> > diff --git a/fs/btrfs/bio.h b/fs/btrfs/bio.h
> > index e48612340745..749004ffdc1c 100644
> > --- a/fs/btrfs/bio.h
> > +++ b/fs/btrfs/bio.h
> > @@ -101,6 +101,13 @@ struct btrfs_bio *btrfs_bio_alloc(unsigned int nr_vecs, blk_opf_t opf,
> >  				  btrfs_bio_end_io_t end_io, void *private);
> >  void btrfs_bio_end_io(struct btrfs_bio *bbio, blk_status_t status);
> >  
> > +#define BTRFS_BIO_FLAG_CSUM_SEARCH_COMMIT_ROOT	1U << (BIO_FLAG_LAST + 1)
> 
> All expressions in macros should be in ( ), namelly when there's a
> potential for operator precedence change like with "<<" after the macro
> is expanded in some code.
> 
> > +#define BTRFS_BIO_PRIVATE_FLAG_MASK	(BTRFS_BIO_FLAG_CSUM_SEARCH_COMMIT_ROOT)
> 
> Do you plan to add more such flags to private? This looks line one level
> more of abstraction than we need for this optimization. This could be
> simply used as BTRFS_BIO_FLAG_CSUM_SEARCH_COMMIT_ROOT. And for that
> reason the helpers do not need to sound generic that it manipulates
> 'private', the names can be btrfs_bio_set_csum_search_commit_root(),
> which is IMHO expressing the same semantics.
> 

I don't plan to add any more btrfs private bio flags. I made the
judgment that doing it generically with checking (particularly for the
important and explicit clear before submit) was better than the one off,
because it made what was being done as clear as possible. It's still not
perfectly clear, because of the whole "private flags" name not being
perfect.

Since there is only one user, I totally see the argument for just doing
it as a one-off. Would you like me to rewrite it to
btrfs_bio_set_csum_search_commit_root?

> > +void btrfs_bio_set_private_flag(struct btrfs_bio *bbio, unsigned short flag);
> > +void btrfs_bio_clear_private_flag(struct btrfs_bio *bbio, unsigned short flag);
> > +void btrfs_bio_clear_private_flags(struct btrfs_bio *bbio);
> > +bool btrfs_bio_private_flagged(struct btrfs_bio *bbio, unsigned short flag);
> > +
> >  /* Submit using blkcg_punt_bio_submit. */
> >  #define REQ_BTRFS_CGROUP_PUNT			REQ_FS_PRIVATE
> >  
> > diff --git a/fs/btrfs/extent_io.c b/fs/btrfs/extent_io.c
> > index 09c0d18a7b5a..b1b5dce05728 100644
> > --- a/fs/btrfs/extent_io.c
> > +++ b/fs/btrfs/extent_io.c
> > @@ -108,6 +108,21 @@ struct btrfs_bio_ctrl {
> >  	 * This is to avoid touching ranges covered by compression/inline.
> >  	 */
> >  	unsigned long submit_bitmap;
> > +	/*
> > +	 * If this is a data read bio, we set this to true if it is safe to
> > +	 * search for csums in the commit root. Otherwise, it is set to false.
> > +	 *
> > +	 * This is an optimization to reduce the contention on the csum tree
> > +	 * root rwsem. Due to how rwsem is implemented, there is a possible
> > +	 * priority inversion where the readers holding the lock don't get
> > +	 * scheduled (say they're in a cgroup stuck in heavy reclaim) which
> > +	 * then blocks btrfs transactions. The only real help is to try to
> > +	 * reduce the contention on the lock as much as we can.
> > +	 *
> > +	 * Do this by detecting when a data read is reading data from an old
> > +	 * transaction so it's safe to look in the commit root.
> > +	 */
> > +	bool commit_root_csum;
> 
> There's a 4 byte hole after 'opf', you can move it there for better
> struct packing.

  reply	other threads:[~2024-10-15 18:02 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-14 23:08 [PATCH v3] btrfs: try to search for data csums in commit root Boris Burkov
2024-10-15 15:43 ` David Sterba
2024-10-15 18:01   ` Boris Burkov [this message]
2024-10-16  0:25     ` David Sterba

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=20241015180144.GA1731591@zen.localdomain \
    --to=boris@bur.io \
    --cc=dsterba@suse.cz \
    --cc=kernel-team@fb.com \
    --cc=linux-btrfs@vger.kernel.org \
    /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