All of lore.kernel.org
 help / color / mirror / Atom feed
From: Hillf Danton <hdanton@sina.com>
To: Jan Kara <jack@suse.cz>
Cc: Andrew Morton <akpm@linux-foundation.org>,
	linux-fsdevel@vger.kernel.org,
	Michael Stapelberg <stapelberg+linux@google.com>,
	linux-mm@kvack.org
Subject: Re: [PATCH 3/5] writeback: Fix bandwidth estimate for spiky workload
Date: Fri,  9 Jul 2021 16:01:34 +0800	[thread overview]
Message-ID: <20210709080134.2366-1-hdanton@sina.com> (raw)
In-Reply-To: <20210708164301.GA11179@quack2.suse.cz>

On Thu, 8 Jul 2021 18:43:01 +0200 Jan Kara wrote:
>On Thu 08-07-21 20:17:51, Hillf Danton wrote:
>> On Wed, 7 Jul 2021 11:51:38 +0200 Jan Kara wrote:
>> >On Wed 07-07-21 15:40:17, Hillf Danton wrote:
>> >> On Mon,  5 Jul 2021 18:23:17 +0200 Jan Kara wrote:
>> >> >
>> >> >Michael Stapelberg has reported that for workload with short big spikes
>> >> >of writes (GCC linker seem to trigger this frequently) the write
>> >> >throughput is heavily underestimated and tends to steadily sink until it
>> >> >reaches zero. This has rather bad impact on writeback throttling
>> >> >(causing stalls). The problem is that writeback throughput estimate gets
>> >> >updated at most once per 200 ms. One update happens early after we
>> >> >submit pages for writeback (at that point writeout of only small
>> >> >fraction of pages is completed and thus observed throughput is tiny).
>> >> >Next update happens only during the next write spike (updates happen
>> >> >only from inode writeback and dirty throttling code) and if that is
>> >> >more than 1s after previous spike, we decide system was idle and just
>> >> >ignore whatever was written until this moment.
>> >> >
>> >> >Fix the problem by making sure writeback throughput estimate is also
>> >> >updated shortly after writeback completes to get reasonable estimate of
>> >> >throughput for spiky workloads.
>> >> >
>> >> >Link: https://lore.kernel.org/lkml/20210617095309.3542373-1-stapelberg+li>nux@google.com
>> >> >Reported-by: Michael Stapelberg <stapelberg+linux@google.com>
>> >> >Signed-off-by: Jan Kara <jack@suse.cz>
>> >...
>> >> >diff --git a/mm/page-writeback.c b/mm/page-writeback.c
>> >> >index 1fecf8ebadb0..6a99ddca95c0 100644
>> >> >--- a/mm/page-writeback.c
>> >> >+++ b/mm/page-writeback.c
>> >> >@@ -1346,14 +1346,7 @@ static void __wb_update_bandwidth(struct dirty_thr>ottle_control *gdtc,
>> >> > 	unsigned long dirtied;
>> >> > 	unsigned long written;
>> >> >
>> >> >-	lockdep_assert_held(&wb->list_lock);
>> >> >-
>> >> >-	/*
>> >> >-	 * rate-limit, only update once every 200ms.
>> >> >-	 */
>> >> >-	if (elapsed < BANDWIDTH_INTERVAL)
>> >> >-		return;
>> >> 
>> >> Please leave it as it is if you are not dumping the 200ms rule.
>> >
>> >Well, that could break the delayed updated scheduled after the end of
>> >writeback and for no good reason. The problematic ordering is like:
>> 
>> After another look at 2/5, you are cutting the rule, which is worth a
>> seperate patch.
>
>The only update that can break the 200ms rule are the updates added in this
>patch. I don't think separating the removal of 200ms check for that one
>case really brings much clarity. It would rather bring "what if questions"
>to this patch...
>
>> >end writeback on inode1
>> >  queue_delayed_work() - queues delayed work after BANDWIDTH_INTERVAL
>> >
>> >__wb_update_bandwidth() called e.g. from balance_dirty_pages()
>> >  wb->bw_time_stamp = now;
>> >
>> >end writeback on inode2
>> >  queue_delayed_work() - does nothing since work is already queued
>> >
>> >delayed work calls __wb_update_bandwidth() - nothing is done since elapsed
>> >< BANDWIDTH_INTERVAL and we may thus miss reflecting writeback of inode2 in
>> >our estimates.
>> 
>> Your example says the estimate based on inode2 is torpedoed by a random
>> update, and you are looking to make that estimate meaningful at the cost
>> of breaking the rule - how differet is it to the current one if the
>> estimate is derived from 20ms-elapsed interval at inode2? Is it likely to
>> see another palpablely different result at inode3 from 50ms-elapsed interval?
>
>I'm not sure I understand your question correctly but updates after shorter
>than 200ms interval should not disturb the estimates much.
>wb_update_write_bandwidth() effectively uses formula:
>
>	bandwidth = (written + bandwidth * (period - elapsed)) / period
>
>where 'period' is 3 seconds. So we compute average bandwidth over last 3
>seconds where amount written in 'elapsed' interval is 'written' pages. If
>'elapsed' is small, the influence of current sample on reducing estimated
>bandwidth is going to be small as well.

Correct. Without the 3s period that in combination with filters there helps
prevent any sample either in 20ms or 200ms interval from overturning the
estimated bandwidth, we will find what is estimated in an hour is a mile from
what disk vendors claim. And in a day interval I am inclined to ignore the
difference between the estimated BW and the bare metal BW, in assumption that
no disk will be found idle while dirty pages go above the background threshold.

Hillf


  reply	other threads:[~2021-07-09  8:01 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-05 16:23 [PATCH 0/5] writeback: Fix bandwidth estimates Jan Kara
2021-07-05 16:23 ` [PATCH 1/5] writeback: Track number of inodes under writeback Jan Kara
2021-07-05 16:23 ` [PATCH 2/5] writeback: Reliably update bandwidth estimation Jan Kara
2021-07-05 16:23 ` [PATCH 3/5] writeback: Fix bandwidth estimate for spiky workload Jan Kara
2021-07-07  7:40   ` Hillf Danton
2021-07-07  9:51     ` Jan Kara
2021-07-08 12:17       ` Hillf Danton
2021-07-08 16:43         ` Jan Kara
2021-07-09  8:01           ` Hillf Danton [this message]
2021-07-05 16:23 ` [PATCH 4/5] writeback: Rename domain_update_bandwidth() Jan Kara
2021-07-05 16:23 ` [PATCH 5/5] writeback: Use READ_ONCE for unlocked reads of writeback stats Jan Kara
2021-07-09 13:19 ` [PATCH 0/5] writeback: Fix bandwidth estimates Michael Stapelberg
2021-07-09 13:19   ` Michael Stapelberg
2021-07-12 16:27   ` Jan Kara
2021-07-13  8:15     ` Michael Stapelberg
2021-07-13 10:24 [PATCH 0/5 v2] " Jan Kara
2021-07-13 10:24 ` [PATCH 3/5] writeback: Fix bandwidth estimate for spiky workload Jan Kara
2021-07-13 10:36 [PATCH 0/5 v3] writeback: Fix bandwidth estimates Jan Kara
2021-07-13 10:36 ` [PATCH 3/5] writeback: Fix bandwidth estimate for spiky workload Jan Kara
2021-07-13 10:47 [PATCH 0/5 v4] writeback: Fix bandwidth estimates Jan Kara
2021-07-13 10:47 ` [PATCH 3/5] writeback: Fix bandwidth estimate for spiky workload Jan Kara

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=20210709080134.2366-1-hdanton@sina.com \
    --to=hdanton@sina.com \
    --cc=akpm@linux-foundation.org \
    --cc=jack@suse.cz \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=stapelberg+linux@google.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.