Re: [PATCH 12/14] block: introduce blk-iolatency io controller

From: Tejun Heo
Date: Mon Jul 02 2018 - 17:48:29 EST


On Fri, Jun 29, 2018 at 03:25:40PM -0400, Josef Bacik wrote:
> From: Josef Bacik <jbacik@xxxxxx>
>
> Current IO controllers for the block layer are less than ideal for our
> use case. The io.max controller is great at hard limiting, but it is
> not work conserving. This patch introduces io.latency. You provide a
> latency target for your group and we monitor the io in short windows to
> make sure we are not exceeding those latency targets. This makes use of
> the rq-qos infrastructure and works much like the wbt stuff. There are
> a few differences from wbt
>
> - It's bio based, so the latency covers the whole block layer in addition to
> the actual io.
> - We will throttle all IO types that comes in here if we need to.
> - We use the mean latency over the 100ms window. This is because writes can
> be particularly fast, which could give us a false sense of the impact of
> other workloads on our protected workload.
> - By default there's no throttling, we set the queue_depth to INT_MAX so that
> we can have as many outstanding bio's as we're allowed to. Only at
> throttle time do we pay attention to the actual queue depth.
> - We backcharge cgroups for root cg issued IO and induce artificial
> delays in order to deal with cases like metadata only or swap heavy
> workloads.
>
> In testing this has worked out relatively well. Protected workloads
> will throttle noisy workloads down to 1 io at time if they are doing
> normal IO on their own, or induce up to a 1 second delay per syscall if
> they are doing a lot of root issued IO (metadata/swap IO).
>
> Our testing has revolved mostly around our production web servers where
> we have hhvm (the web server application) in a protected group and
> everything else in another group. We see slightly higher requests per
> second (RPS) on the test tier vs the control tier, and much more stable
> RPS across all machines in the test tier vs the control tier.
>
> Another test we run is a slow memory allocator in the unprotected group.
> Before this would eventually push us into swap and cause the whole box
> to die and not recover at all. With these patches we see slight RPS
> drops (usually 10-15%) before the memory consumer is properly killed and
> things recover within seconds.
>
> Signed-off-by: Josef Bacik <jbacik@xxxxxx>
...
> +static inline bool iolatency_may_queue(struct iolatency_grp *iolat,
> + wait_queue_entry_t *wait,
> + bool first_block)
> +{
> + struct rq_wait *rqw = &iolat->rq_wait;
> +
> + if (first_block && waitqueue_active(&rqw->wait) &&
> + rqw->wait.head.next != &wait->entry)
> + return false;

This optimization seems a bit scary to me, so we want to block if
there are others already trying to block, at least for the first time
around. IIUC, this is safe because at least the first waiter is
guaranteed to bypass this condition and thus will always do the actual
condition, right? It'd be great to explain this a bit. If this is a
meaningful optimization to protect against everyone banging on the
same thing post wake up, in the longer term, maybe it'd make sense to
add a waitqueue helper for this?

> +/*
> + * We scale the qd down faster than we scale up, so we need to use this helper
> + * to adjust the scale_cookie accordingly so we don't prematurely get
> + * scale_cookie at DEFAULT_SCALE_COOKIE and unthrottle too much.
> + */
> +static void scale_cookie_change(struct blk_iolatency *blkiolat,
> + struct child_latency_info *lat_info,
> + bool up)
> +{
> + unsigned long qd = blk_queue_depth(blkiolat->rqos.q);
> + unsigned long scale = scale_amount(qd, up);
> + unsigned long old = atomic_read(&lat_info->scale_cookie);
> + unsigned long max_scale = qd << 1;
> + unsigned long diff = 0;
> +
> + if (old < DEFAULT_SCALE_COOKIE)
> + diff = DEFAULT_SCALE_COOKIE - old;
> +
> + if (up) {
> + if (scale + old > DEFAULT_SCALE_COOKIE)
> + atomic_set(&lat_info->scale_cookie,
> + DEFAULT_SCALE_COOKIE);
> + else if (diff > qd)
> + atomic_inc(&lat_info->scale_cookie);
> + else
> + atomic_add(scale, &lat_info->scale_cookie);
> + } else {
> + /*
> + * We don't want to dig a hole so deep that it takes us hours to
> + * dig out of it. Just enough that we don't throttle/unthrottle
> + * with jagged workloads but can still unthrottle once pressure
> + * has sufficiently dissipated.
> + */
> + if (diff > qd) {
> + if (diff < max_scale)
> + atomic_dec(&lat_info->scale_cookie);
> + } else {
> + atomic_sub(scale, &lat_info->scale_cookie);
> + }
> + }
> +}

So, once understood, the scale_cookie thing is pretty straight-forward
but I think it'd be help a lot to have an overview explanation of how
it works to elect the failing group with the lowest target and how
scale_cookie is used to communicate to tell others to throttle up or
down.

> +/* Check our parent and see if the scale cookie has changed. */
> +static void check_scale_change(struct iolatency_grp *iolat)
> +{
...
> + if (direction < 0 && iolat->min_lat_nsec) {
> + u64 samples_thresh;
> +
> + if (!scale_lat || iolat->min_lat_nsec <= scale_lat)
> + return;
> +
> + /*
> + * Sometimes high priority groups are their own worst enemy, so
> + * instead of taking it out on some poor other group that did 5%
> + * or less of the IO's for the last summation just skip this
> + * scale down event.
> + */
> + samples_thresh = lat_info->nr_samples * 5;
> + samples_thresh = div64_u64(samples_thresh, 100);
> + if (iolat->nr_samples <= samples_thresh)
> + return;

Not that this needs changes right now but I wonder whether it'd be
better to limit the other way around - ie. if a group is >
(1-sample_thres), don't let it win. It'd be the same effect but
likely a bit more robust.

> +static size_t iolatency_pd_stat(struct blkg_policy_data *pd, char *buf,
> + size_t size)
> +{
> + struct iolatency_grp *iolat = pd_to_lat(pd);
> + unsigned long long avg_lat = div64_u64(iolat->total_lat_avg, NSEC_PER_USEC);
> +
> + if (iolat->rq_depth.max_depth == (u64)-1)
> + return scnprintf(buf, size, " depth=max avg_lat=%llu",
> + avg_lat);
> +
> + return scnprintf(buf, size, " depth=%u avg_lat=%llu",
> + iolat->rq_depth.max_depth, avg_lat);

I wonder whether providing a reasonable decaying running avg would be
better than reporting whole avg - e.g. something which decays mostly
in a minute or so. After all, the throttling action is based on
pretty short timeframe, so reporting something more current might be
more helpful.

Other than the above nitpicks, seems generally good to me, at least on
skimming the code. It's a whole new feature and we can fix it as we
go along.

Acked-by: Tejun Heo <tj@xxxxxxxxxx>

Thanks.

--
tejun