Message ID | 20220608004228.3658429-1-clm@fb.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [v2] iomap: skip pages past eof in iomap_do_writepage() | expand |
On Tue, Jun 07, 2022 at 05:42:29PM -0700, Chris Mason wrote: > iomap_do_writepage() sends pages past i_size through > folio_redirty_for_writepage(), which normally isn't a problem because > truncate and friends clean them very quickly. [...] > Signed-off-by: Chris Mason <clm@fb.com> > Co-authored-by: Johannes Weiner <hannes@cmpxchg.org> > Reviewed-by: Johannes Weiner <hannes@cmpxchg.org> > Reported-by: Domas Mituzas <domas@fb.com> Reviewed-by: Matthew Wilcox (Oracle) <willy@infradead.org>
On Tue, Jun 07, 2022 at 05:42:29PM -0700, Chris Mason wrote: > iomap_do_writepage() sends pages past i_size through > folio_redirty_for_writepage(), which normally isn't a problem because > truncate and friends clean them very quickly. > > When the system has cgroups configured, we can end up in situations > where one cgroup has almost no dirty pages at all, and other cgroups > consume the entire background dirty limit. This is especially common in > our XFS workloads in production because they have cgroups using O_DIRECT > for almost all of the IO mixed in with cgroups that do more traditional > buffered IO work. > > We've hit storms where the redirty path hits millions of times in a few > seconds, on all a single file that's only ~40 pages long. This leads to > long tail latencies for file writes because the pdflush workers are > hogging the CPU from some kworkers bound to the same CPU. > > Reproducing this on 5.18 was tricky because 869ae85dae ("xfs: flush new > eof page on truncate...") ends up writing/waiting most of these dirty pages > before truncate gets a chance to wait on them. That commit went into 5.10, so this would mean it's not easily reproducable on kernels released since then? > diff --git a/fs/iomap/buffered-io.c b/fs/iomap/buffered-io.c > index 8ce8720093b9..64d1476c457d 100644 > --- a/fs/iomap/buffered-io.c > +++ b/fs/iomap/buffered-io.c > @@ -1482,10 +1482,10 @@ iomap_do_writepage(struct page *page, struct writeback_control *wbc, void *data) > pgoff_t end_index = isize >> PAGE_SHIFT; > > /* > - * Skip the page if it's fully outside i_size, e.g. due to a > - * truncate operation that's in progress. We must redirty the > - * page so that reclaim stops reclaiming it. Otherwise > - * iomap_vm_releasepage() is called on it and gets confused. > + * Skip the page if it's fully outside i_size, e.g. > + * due to a truncate operation that's in progress. We've > + * cleaned this page and truncate will finish things off for > + * us. > * > * Note that the end_index is unsigned long. If the given > * offset is greater than 16TB on a 32-bit system then if we > @@ -1500,7 +1500,7 @@ iomap_do_writepage(struct page *page, struct writeback_control *wbc, void *data) > */ > if (folio->index > end_index || > (folio->index == end_index && poff == 0)) > - goto redirty; > + goto unlock; > > /* > * The page straddles i_size. It must be zeroed out on each > @@ -1518,6 +1518,7 @@ iomap_do_writepage(struct page *page, struct writeback_control *wbc, void *data) > > redirty: > folio_redirty_for_writepage(wbc, folio); > +unlock: > folio_unlock(folio); > return 0; > } Regardless, the change looks fine. Reviewed-by: Dave Chinner <dchinner@redhat.com> Cheers, Dave.
On 6/8/22 8:53 PM, Dave Chinner wrote: > On Tue, Jun 07, 2022 at 05:42:29PM -0700, Chris Mason wrote: >> iomap_do_writepage() sends pages past i_size through >> folio_redirty_for_writepage(), which normally isn't a problem because >> truncate and friends clean them very quickly. >> >> When the system has cgroups configured, we can end up in situations >> where one cgroup has almost no dirty pages at all, and other cgroups >> consume the entire background dirty limit. This is especially common in >> our XFS workloads in production because they have cgroups using O_DIRECT >> for almost all of the IO mixed in with cgroups that do more traditional >> buffered IO work. >> >> We've hit storms where the redirty path hits millions of times in a few >> seconds, on all a single file that's only ~40 pages long. This leads to >> long tail latencies for file writes because the pdflush workers are >> hogging the CPU from some kworkers bound to the same CPU. >> >> Reproducing this on 5.18 was tricky because 869ae85dae ("xfs: flush new >> eof page on truncate...") ends up writing/waiting most of these dirty pages >> before truncate gets a chance to wait on them. > > That commit went into 5.10, so this would mean it's not easily > reproducable on kernels released since then? Yes, our main two prod kernels right now are v5.6 and v5.12, but we don't have enough of this database tier on 5.12 to have any meaningful data from production. For my repro, I didn't spend much time on 5.12, but it was hard to trigger there as well. [...] > Regardless, the change looks fine. > > Reviewed-by: Dave Chinner <dchinner@redhat.com> Thanks! Johannes and I are both going on vacation, but I'll get an experiment rolled to enough hosts to see if the long tails get shorter. We're unlikely to come back with results before July. -chris
On 6/9/22 5:15 PM, Chris Mason wrote: > On 6/8/22 8:53 PM, Dave Chinner wrote: >> Reviewed-by: Dave Chinner <dchinner@redhat.com> > > Thanks! Johannes and I are both going on vacation, but I'll get an > experiment rolled to enough hosts to see if the long tails get shorter. > We're unlikely to come back with results before July. > Of course, the easiest way to test my theory is live patching against v5.6, but there's a wrinkle because v5.6 still has xfs_vm_writepage() Looks like the iomap conversion deleted the warning that Jan was originally fixing, and I went through some hoops to trigger skipping the pages from inside writepage(). As you noted in the commit to delete writepage, this is pretty hard to trigger but it does happen once I get down to a few hundred MB free. It doesn't seem to impact fsx runs or other load, and we unmount/xfs_repair cleanly. I don't like to ask people to think about ancient kernels, but am I missing any huge problems? I've got this patch backported on v5.6, and writepage is still in place. -chris
On Sat, Jun 11, 2022 at 07:34:01PM -0400, Chris Mason wrote: > On 6/9/22 5:15 PM, Chris Mason wrote: > > On 6/8/22 8:53 PM, Dave Chinner wrote: > > > > Reviewed-by: Dave Chinner <dchinner@redhat.com> > > > > Thanks! Johannes and I are both going on vacation, but I'll get an > > experiment rolled to enough hosts to see if the long tails get shorter. > > We're unlikely to come back with results before July. > > > > Of course, the easiest way to test my theory is live patching against v5.6, > but there's a wrinkle because v5.6 still has xfs_vm_writepage() > > Looks like the iomap conversion deleted the warning that Jan was originally > fixing, and I went through some hoops to trigger skipping the pages from > inside writepage(). As you noted in the commit to delete writepage, this is > pretty hard to trigger but it does happen once I get down to a few hundred > MB free. It doesn't seem to impact fsx runs or other load, and we > unmount/xfs_repair cleanly. > > I don't like to ask people to think about ancient kernels, but am I missing > any huge problems? I've got this patch backported on v5.6, and writepage is > still in place. Just backport the patch to remove ->writepage as well? I've run test kernels since ~2017 with the writepage delete in it and never seen any problems as a result of it. That would seem to me to be the simplest way of avoiding unexpected issues with reclaim writeback and truncate races... Cheers, Dave.
diff --git a/fs/iomap/buffered-io.c b/fs/iomap/buffered-io.c index 8ce8720093b9..64d1476c457d 100644 --- a/fs/iomap/buffered-io.c +++ b/fs/iomap/buffered-io.c @@ -1482,10 +1482,10 @@ iomap_do_writepage(struct page *page, struct writeback_control *wbc, void *data) pgoff_t end_index = isize >> PAGE_SHIFT; /* - * Skip the page if it's fully outside i_size, e.g. due to a - * truncate operation that's in progress. We must redirty the - * page so that reclaim stops reclaiming it. Otherwise - * iomap_vm_releasepage() is called on it and gets confused. + * Skip the page if it's fully outside i_size, e.g. + * due to a truncate operation that's in progress. We've + * cleaned this page and truncate will finish things off for + * us. * * Note that the end_index is unsigned long. If the given * offset is greater than 16TB on a 32-bit system then if we @@ -1500,7 +1500,7 @@ iomap_do_writepage(struct page *page, struct writeback_control *wbc, void *data) */ if (folio->index > end_index || (folio->index == end_index && poff == 0)) - goto redirty; + goto unlock; /* * The page straddles i_size. It must be zeroed out on each @@ -1518,6 +1518,7 @@ iomap_do_writepage(struct page *page, struct writeback_control *wbc, void *data) redirty: folio_redirty_for_writepage(wbc, folio); +unlock: folio_unlock(folio); return 0; }