Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1631639 > unrolled thread
| Started by | Vincent Guittot <vincent.guittot@linaro.org> |
|---|---|
| First post | 2017-04-26 20:20 +0200 |
| Last post | 2017-05-04 21:10 +0200 |
| Articles | 20 — 3 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH 2/2] sched/fair: Always propagate runnable_load_avg Vincent Guittot <vincent.guittot@linaro.org> - 2017-04-26 20:20 +0200
Re: [PATCH 2/2] sched/fair: Always propagate runnable_load_avg Tejun Heo <tj@kernel.org> - 2017-04-27 01:00 +0200
Re: [PATCH 2/2] sched/fair: Always propagate runnable_load_avg Vincent Guittot <vincent.guittot@linaro.org> - 2017-04-27 10:30 +0200
Re: [PATCH 2/2] sched/fair: Always propagate runnable_load_avg Tejun Heo <tj@kernel.org> - 2017-04-28 22:40 +0200
Re: [PATCH 2/2] sched/fair: Always propagate runnable_load_avg Tejun Heo <tj@kernel.org> - 2017-04-28 22:40 +0200
Re: [PATCH 2/2] sched/fair: Always propagate runnable_load_avg Peter Zijlstra <peterz@infradead.org> - 2017-05-01 18:00 +0200
Re: [PATCH 2/2] sched/fair: Always propagate runnable_load_avg Tejun Heo <tj@kernel.org> - 2017-05-03 00:10 +0200
Re: [PATCH 2/2] sched/fair: Always propagate runnable_load_avg Vincent Guittot <vincent.guittot@linaro.org> - 2017-05-02 09:20 +0200
Re: [PATCH 2/2] sched/fair: Always propagate runnable_load_avg Vincent Guittot <vincent.guittot@linaro.org> - 2017-05-02 15:30 +0200
Re: [PATCH 2/2] sched/fair: Always propagate runnable_load_avg Tejun Heo <tj@kernel.org> - 2017-05-03 00:40 +0200
Re: [PATCH 2/2] sched/fair: Always propagate runnable_load_avg Tejun Heo <tj@kernel.org> - 2017-05-03 00:00 +0200
Re: [PATCH 2/2] sched/fair: Always propagate runnable_load_avg Vincent Guittot <vincent.guittot@linaro.org> - 2017-05-03 09:40 +0200
Re: [PATCH 2/2] sched/fair: Always propagate runnable_load_avg Peter Zijlstra <peterz@infradead.org> - 2017-05-03 11:40 +0200
Re: [PATCH 2/2] sched/fair: Always propagate runnable_load_avg Vincent Guittot <vincent.guittot@linaro.org> - 2017-05-03 12:40 +0200
Re: [PATCH 2/2] sched/fair: Always propagate runnable_load_avg Peter Zijlstra <peterz@infradead.org> - 2017-05-03 15:20 +0200
Re: [PATCH 2/2] sched/fair: Always propagate runnable_load_avg Tejun Heo <tj@kernel.org> - 2017-05-03 23:50 +0200
Re: [PATCH 2/2] sched/fair: Always propagate runnable_load_avg Vincent Guittot <vincent.guittot@linaro.org> - 2017-05-04 10:30 +0200
Re: [PATCH 2/2] sched/fair: Always propagate runnable_load_avg Tejun Heo <tj@kernel.org> - 2017-05-04 19:50 +0200
Re: [PATCH 2/2] sched/fair: Always propagate runnable_load_avg Vincent Guittot <vincent.guittot@linaro.org> - 2017-05-04 21:10 +0200
Re: [PATCH 2/2] sched/fair: Always propagate runnable_load_avg Tejun Heo <tj@kernel.org> - 2017-05-04 21:10 +0200
| From | Vincent Guittot <vincent.guittot@linaro.org> |
|---|---|
| Date | 2017-04-26 20:20 +0200 |
| Subject | Re: [PATCH 2/2] sched/fair: Always propagate runnable_load_avg |
| Message-ID | <tAzHH-5SI-7@gated-at.bofh.it> |
On 24 April 2017 at 22:14, Tejun Heo <tj@kernel.org> wrote: > We noticed that with cgroup CPU controller in use, the scheduling > > Note the drastic increase in p99 scheduling latency. After > investigation, it turned out that the update_sd_lb_stats(), which is > used by load_balance() to pick the most loaded group, was often > picking the wrong group. A CPU which has one schbench running and Can the problem be on the load balance side instead ? and more precisely in the wakeup path ? After looking at the trace, it seems that task placement happens at wake up path and if it fails to select the right idle cpu at wake up, you will have to wait for a load balance which is alreayd too late > another queued wouldn't report the correspondingly higher It will as load_avg includes the runnable_load_avg so whatever load is in runnable_load_avg will be in load_avg too. But at the contrary, runnable_load_avg will not have the blocked that is going to wake up soon in the case of schbench One last thing, the load_avg of an idle CPU can stay blocked for a while (until a load balance happens that will update blocked load) and can be seen has "busy" whereas it is not. Could it be a reason of your problem ? I have an ongoing patch to solve the problem at least partly if this can be a reason > weighted_cpuload() and get looked over as the target of load > balancing. > > weighted_cpuload() is the root cfs_rq's runnable_load_avg which is the > sum of the load_avg of all queued sched_entities. Without cgroups or > at the root cgroup, each task's load_avg contributes directly to the > sum. When a task wakes up or goes to sleep, the change is immediately > reflected on runnable_load_avg which in turn affects load balancing. > > #else /* CONFIG_FAIR_GROUP_SCHED */
[toc] | [next] | [standalone]
| From | Tejun Heo <tj@kernel.org> |
|---|---|
| Date | 2017-04-27 01:00 +0200 |
| Message-ID | <tAE4G-mI-15@gated-at.bofh.it> |
| In reply to | #1631639 |
Hello, On Wed, Apr 26, 2017 at 08:12:09PM +0200, Vincent Guittot wrote: > On 24 April 2017 at 22:14, Tejun Heo <tj@kernel.org> wrote: > Can the problem be on the load balance side instead ? and more > precisely in the wakeup path ? > After looking at the trace, it seems that task placement happens at > wake up path and if it fails to select the right idle cpu at wake up, > you will have to wait for a load balance which is alreayd too late Oh, I was tracing most of scheduler activities and the ratios of wakeups picking idle CPUs were about the same regardless of cgroup membership. I can confidently say that the latency issue that I'm seeing is from load balancer picking the wrong busiest CPU, which is not to say that there can be other problems. > > another queued wouldn't report the correspondingly higher > > It will as load_avg includes the runnable_load_avg so whatever load is > in runnable_load_avg will be in load_avg too. But at the contrary, > runnable_load_avg will not have the blocked that is going to wake up > soon in the case of schbench Decaying contribution of blocked tasks don't affect the busiest CPU selection. Without cgroup, runnable_load_avg is immediately increased and decreased as tasks enter and leave the queue and otherwise we end up with CPUs which are idle when there are threads queued on different CPUs accumulating scheduling latencies. The patch doesn't change how the busiest CPU is picked. It already uses runnable_load_avg. The change that cgroup causes is that it blocks updates to runnable_load_avg from newly scheduled or sleeping tasks. The issue isn't about whether runnable_load_avg or load_avg should be used but the unexpected differences in the metrics that the load balancer uses depending on whether cgroup is used or not. > One last thing, the load_avg of an idle CPU can stay blocked for a > while (until a load balance happens that will update blocked load) and > can be seen has "busy" whereas it is not. Could it be a reason of your > problem ? AFAICS, the load balancer doesn't use load_avg. Thanks. -- tejun
[toc] | [prev] | [next] | [standalone]
| From | Vincent Guittot <vincent.guittot@linaro.org> |
|---|---|
| Date | 2017-04-27 10:30 +0200 |
| Message-ID | <tAMYi-6lN-9@gated-at.bofh.it> |
| In reply to | #1631787 |
On 27 April 2017 at 00:52, Tejun Heo <tj@kernel.org> wrote: > Hello, > > On Wed, Apr 26, 2017 at 08:12:09PM +0200, Vincent Guittot wrote: >> On 24 April 2017 at 22:14, Tejun Heo <tj@kernel.org> wrote: >> Can the problem be on the load balance side instead ? and more >> precisely in the wakeup path ? >> After looking at the trace, it seems that task placement happens at >> wake up path and if it fails to select the right idle cpu at wake up, >> you will have to wait for a load balance which is alreayd too late > > Oh, I was tracing most of scheduler activities and the ratios of > wakeups picking idle CPUs were about the same regardless of cgroup > membership. I can confidently say that the latency issue that I'm > seeing is from load balancer picking the wrong busiest CPU, which is > not to say that there can be other problems. ok. Is there any trace that you can share ? your behavior seems different of mine > >> > another queued wouldn't report the correspondingly higher >> >> It will as load_avg includes the runnable_load_avg so whatever load is >> in runnable_load_avg will be in load_avg too. But at the contrary, >> runnable_load_avg will not have the blocked that is going to wake up >> soon in the case of schbench > > Decaying contribution of blocked tasks don't affect the busiest CPU > selection. Without cgroup, runnable_load_avg is immediately increased > and decreased as tasks enter and leave the queue and otherwise we end > up with CPUs which are idle when there are threads queued on different > CPUs accumulating scheduling latencies. > > The patch doesn't change how the busiest CPU is picked. It already > uses runnable_load_avg. The change that cgroup causes is that it > blocks updates to runnable_load_avg from newly scheduled or sleeping > tasks. > > The issue isn't about whether runnable_load_avg or load_avg should be > used but the unexpected differences in the metrics that the load I think that's the root of the problem. I explain a bit more my view on the other thread > balancer uses depending on whether cgroup is used or not. > >> One last thing, the load_avg of an idle CPU can stay blocked for a >> while (until a load balance happens that will update blocked load) and >> can be seen has "busy" whereas it is not. Could it be a reason of your >> problem ? > > AFAICS, the load balancer doesn't use load_avg. > > Thanks. > > -- > tejun
[toc] | [prev] | [next] | [standalone]
| From | Tejun Heo <tj@kernel.org> |
|---|---|
| Date | 2017-04-28 22:40 +0200 |
| Message-ID | <tBkQh-4e7-5@gated-at.bofh.it> |
| In reply to | #1631949 |
Hello, Vincent. On Thu, Apr 27, 2017 at 10:29:10AM +0200, Vincent Guittot wrote: > On 27 April 2017 at 00:52, Tejun Heo <tj@kernel.org> wrote: > > Hello, > > > > On Wed, Apr 26, 2017 at 08:12:09PM +0200, Vincent Guittot wrote: > >> On 24 April 2017 at 22:14, Tejun Heo <tj@kernel.org> wrote: > >> Can the problem be on the load balance side instead ? and more > >> precisely in the wakeup path ? > >> After looking at the trace, it seems that task placement happens at > >> wake up path and if it fails to select the right idle cpu at wake up, > >> you will have to wait for a load balance which is alreayd too late > > > > Oh, I was tracing most of scheduler activities and the ratios of > > wakeups picking idle CPUs were about the same regardless of cgroup > > membership. I can confidently say that the latency issue that I'm > > seeing is from load balancer picking the wrong busiest CPU, which is > > not to say that there can be other problems. > > ok. Is there any trace that you can share ? your behavior seems > different of mine I'm attaching the debug patch. With your change (avg instead of runnable_avg), the following trace shows why it's wrong. It's dumping a case where group A has a CPU w/ more than two schbench threads and B doesn't, but the load balancer is determining that B is loaded heavier. dbg_odd: odd: dst=28 idle=2 brk=32 lbtgt=0-31 type=2 dbg_odd_dump: A: grp=1,17 w=2 avg=7.247 grp=8.337 sum=8.337 pertask=2.779 dbg_odd_dump: A: gcap=1.150 gutil=1.095 run=3 idle=0 gwt=2 type=2 nocap=1 dbg_odd_dump: A: CPU001: run=1 schb=1 dbg_odd_dump: A: Q001-asdf: w=1.000,l=0.525,u=0.513,r=0.527 run=1 hrun=1 tgs=100.000 tgw=17.266 dbg_odd_dump: A: Q001-asdf: schbench(153757C):w=1.000,l=0.527,u=0.514 dbg_odd_dump: A: Q001-/: w=5.744,l=2.522,u=0.520,r=3.067 run=1 hrun=1 tgs=1.000 tgw=0.000 dbg_odd_dump: A: Q001-/: asdf(C):w=5.744,l=3.017,u=0.521 dbg_odd_dump: A: CPU017: run=2 schb=2 dbg_odd_dump: A: Q017-asdf: w=2.000,l=0.989,u=0.966,r=0.988 run=2 hrun=2 tgs=100.000 tgw=17.266 dbg_odd_dump: A: Q017-asdf: schbench(153737C):w=1.000,l=0.493,u=0.482 schbench(153739):w=1.000,l=0.494,u=0.483 dbg_odd_dump: A: Q017-/: w=10.653,l=7.888,u=0.973,r=5.270 run=1 hrun=2 tgs=1.000 tgw=0.000 dbg_odd_dump: A: Q017-/: asdf(C):w=10.653,l=5.269,u=0.966 dbg_odd_dump: B: grp=14,30 w=2 avg=7.666 grp=8.819 sum=8.819 pertask=4.409 dbg_odd_dump: B: gcap=1.150 gutil=1.116 run=2 idle=0 gwt=2 type=2 nocap=1 dbg_odd_dump: B: CPU014: run=1 schb=1 dbg_odd_dump: B: Q014-asdf: w=1.000,l=1.004,u=0.970,r=0.492 run=1 hrun=1 tgs=100.000 tgw=17.266 dbg_odd_dump: B: Q014-asdf: schbench(153760C):w=1.000,l=0.491,u=0.476 dbg_odd_dump: B: Q014-/: w=5.605,l=11.146,u=0.970,r=5.774 run=1 hrun=1 tgs=1.000 tgw=0.000 dbg_odd_dump: B: Q014-/: asdf(C):w=5.605,l=5.766,u=0.970 dbg_odd_dump: B: CPU030: run=1 schb=1 dbg_odd_dump: B: Q030-asdf: w=1.000,l=0.538,u=0.518,r=0.558 run=1 hrun=1 tgs=100.000 tgw=17.266 dbg_odd_dump: B: Q030-asdf: schbench(153747C):w=1.000,l=0.537,u=0.516 dbg_odd_dump: B: Q030-/: w=5.758,l=3.186,u=0.541,r=3.044 run=1 hrun=1 tgs=1.000 tgw=0.000 dbg_odd_dump: B: Q030-/: asdf(C):w=5.758,l=3.092,u=0.516 You can notice that B's pertask weight is 4.409 which is way higher than A's 2.779, and this is from Q014-asdf's contribution to Q014-/ is twice as high as it should be. The root queue's runnable avg should only contain what's currently active but because we're scaling load avg which includes both active and blocked, we're ending up picking group B over A. This shows up in the total number of times we pick the wrong queue and thus latency. I'm running the following script with the debug patch applied. #!/bin/bash date cat /proc/self/cgroup echo 1000 > /sys/module/fair/parameters/dbg_odd_nth echo 0 > /sys/module/fair/parameters/dbg_odd_cnt ~/schbench -m 2 -t 16 -s 10000 -c 15000 -r 30 cat /sys/module/fair/parameters/dbg_odd_cnt With your patch applied, in the root cgroup, Fri Apr 28 12:48:59 PDT 2017 0::/ Latency percentiles (usec) 50.0000th: 26 75.0000th: 63 90.0000th: 78 95.0000th: 88 *99.0000th: 707 99.5000th: 5096 99.9000th: 10352 min=0, max=13743 577 In the /asdf cgroup, Fri Apr 28 13:19:53 PDT 2017 0::/asdf Latency percentiles (usec) 50.0000th: 35 75.0000th: 67 90.0000th: 81 95.0000th: 98 *99.0000th: 2212 99.5000th: 4536 99.9000th: 11024 min=0, max=13026 1708 The last line is the number of times the load balancer picked a group w/o more than two schbench threads on a CPU over one w/. Some number of these are expected as there are other threads and there are some plays in all the calculations but propgating avg or not propgating at all significantly increases the count and latency. > > The issue isn't about whether runnable_load_avg or load_avg should be > > used but the unexpected differences in the metrics that the load > > I think that's the root of the problem. I explain a bit more my view > on the other thread So, when picking the busiest group, the only thing which matters is the queue's runnable_load_avg, which should approximate the sum of all on-queue loads on that CPU. If we don't propagate or propagate load_avg, we're factoring in blocked avg of descendent cgroups into the root's runnable_load_avg which is obviously wrong. We can argue whether overriding a cfs_rq se's load_avg to the scaled runnable_load_avg of the cfs_rq is the right way to go or we should introduce a separate channel to propagate runnable_load_avg; however, it's clear that we need to fix runnable_load_avg propagation one way or another. The thing with cfs_rq se's load_avg is that, it isn't really used anywhere else AFAICS, so overriding it to the cfs_rq's runnable_load_avg isn't prettiest but doesn't really change anything. Thanks. -- tejun
[toc] | [prev] | [next] | [standalone]
| From | Tejun Heo <tj@kernel.org> |
|---|---|
| Date | 2017-04-28 22:40 +0200 |
| Message-ID | <tBkQh-4e7-13@gated-at.bofh.it> |
| In reply to | #1633141 |
Here's the debug patch.
The debug condition triggers when the load balancer picks a group w/o
more than one schbench threads on a CPU over one w/.
/sys/module/fair/parameters/dbg_odd_cnt: resettable counter
/sys/module/fair/parameters/dbg_odd_nth: dump group states on Nth
occurrence via trace_printk()
The load / weights are printed out so that NICE_0_LOAD is 1.000.
Thanks.
---
kernel/sched/fair.c | 160 +++++++++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 159 insertions(+), 1 deletion(-)
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -32,11 +32,18 @@
#include <linux/mempolicy.h>
#include <linux/migrate.h>
#include <linux/task_work.h>
+#include <linux/moduleparam.h>
#include <trace/events/sched.h>
#include "sched.h"
+static unsigned long dbg_odd_nth;
+static unsigned long dbg_odd_cnt;
+
+module_param(dbg_odd_nth, ulong, 0644);
+module_param(dbg_odd_cnt, ulong, 0644);
+
/*
* Targeted preemption latency for CPU-bound tasks:
*
@@ -7413,6 +7420,149 @@ static inline void update_sg_lb_stats(st
sgs->group_type = group_classify(group, sgs);
}
+static int count_schb(struct rq *rq)
+{
+ unsigned long flags;
+ struct task_struct *p;
+ int cnt = 0;
+
+ raw_spin_lock_irqsave(&rq->lock, flags);
+
+ list_for_each_entry(p, &rq->cfs_tasks, se.group_node)
+ if (!strncmp(p->comm, "schbench", 8))
+ cnt++;
+
+ raw_spin_unlock_irqrestore(&rq->lock, flags);
+
+ return cnt;
+}
+
+static bool sg_has_two_schb(struct sched_group *sg)
+{
+ int cpu;
+
+ for_each_cpu(cpu, sched_group_cpus(sg))
+ if (count_schb(cpu_rq(cpu)) >= 2)
+ return true;
+ return false;
+}
+
+static DEFINE_PER_CPU(char [PAGE_SIZE], odd_buf);
+
+#define lbw(x) (int)((x) / NICE_0_LOAD), (int)(((x) % NICE_0_LOAD) * 1000 / NICE_0_LOAD)
+#define lba(x) (int)((scale_load(x)) / NICE_0_LOAD), (int)(((scale_load(x)) % NICE_0_LOAD) * 1000 / NICE_0_LOAD)
+
+static int odd_append_se(struct sched_entity *se, const char *postfix,
+ int cnt, char *buf, size_t size)
+{
+#define odd_append(fmt, args...) do { \
+ cnt += scnprintf(buf + cnt, size - cnt, fmt, ##args); \
+ cnt = min_t(int, cnt, size); \
+} while (0)
+
+ if (entity_is_task(se)) {
+ struct task_struct *task = task_of(se);
+ odd_append(" %s(%d%s)", task->comm, task->pid, postfix);
+ } else {
+ char nbuf[64];
+ cgroup_name(se->my_q->tg->css.cgroup, nbuf, sizeof(nbuf));
+ odd_append(" %s(%s)", nbuf, postfix);
+ }
+ odd_append(":w=%d.%03d,l=%d.%03d,u=%d.%03d",
+ lbw(se->load.weight),
+ lba(se->avg.load_avg),
+ lba(se->avg.util_avg));
+
+ return cnt;
+}
+
+static void dbg_odd_dump(const char *pref,
+ struct sched_group *sg, struct sg_lb_stats *sgs)
+{
+ int cpu;
+
+ trace_printk("%sgrp=%*pbl w=%u avg=%d.%03d grp=%d.%03d sum=%d.%03d pertask=%d.%03d\n", pref,
+ cpumask_pr_args(sched_group_cpus(sg)), sg->group_weight,
+ lba(sgs->avg_load), lba(sgs->group_load),
+ lba(sgs->sum_weighted_load), lba(sgs->load_per_task));
+ trace_printk("%sgcap=%d.%03d gutil=%d.%03d run=%u idle=%u gwt=%u type=%d nocap=%d\n",
+ pref,
+ lba(sgs->group_capacity), lba(sgs->group_util),
+ sgs->sum_nr_running, sgs->idle_cpus, sgs->group_weight,
+ sgs->group_type, sgs->group_no_capacity);
+
+ for_each_cpu(cpu, sched_group_cpus(sg)) {
+ struct task_group *tg;
+ unsigned long flags;
+
+ trace_printk("%sCPU%03d: run=%u schb=%d\n", pref, cpu,
+ cpu_rq(cpu)->nr_running, count_schb(cpu_rq(cpu)));
+
+ raw_spin_lock_irqsave(&cpu_rq(cpu)->lock, flags);
+
+ list_for_each_entry_rcu(tg, &task_groups, list) {
+ struct cfs_rq *cfs_rq = tg->cfs_rq[cpu];
+ char qname[32] = "root";
+ int depth = 0;
+ long tg_weight = 0, tg_shares = 0;
+ struct sched_entity *se;
+ char *buf = per_cpu_ptr(odd_buf, cpu);
+ int cnt;
+
+ if (!cfs_rq->nr_running)
+ continue;
+
+ if (cfs_rq->tg) {
+ cgroup_name(cfs_rq->tg->css.cgroup, qname, sizeof(qname));
+ if (cfs_rq->tg->se[cpu])
+ depth = cfs_rq->tg->se[cpu]->depth;
+ tg_weight = atomic_long_read(&cfs_rq->tg->load_avg);
+ tg_shares = cfs_rq->tg->shares;
+ }
+
+ trace_printk("%sQ%03d-%s@%d: w=%d.%03d,l=%d.%03d,u=%d.%03d,r=%d.%03d run=%u hrun=%u tgs=%d.%03d tgw=%d.%03d\n",
+ pref, cpu, qname, depth,
+ lbw(cfs_rq->load.weight),
+ lba(cfs_rq->avg.load_avg),
+ lba(cfs_rq->avg.util_avg),
+ lba(cfs_rq->runnable_load_avg),
+ cfs_rq->nr_running, cfs_rq->h_nr_running,
+ lbw(tg_shares),
+ lba(tg_weight));
+
+ buf[0] = '\0';
+ cnt = 0;
+
+ if (cfs_rq->curr)
+ cnt = odd_append_se(cfs_rq->curr, "C", cnt, buf, PAGE_SIZE);
+
+ for (se = __pick_first_entity(cfs_rq); se;
+ se = __pick_next_entity(se))
+ cnt = odd_append_se(se, "", cnt, buf, PAGE_SIZE);
+
+ trace_printk("%sQ%03d-%s@%d: %s\n",
+ pref, cpu, qname, depth, buf);
+ }
+
+ raw_spin_unlock_irqrestore(&cpu_rq(cpu)->lock, flags);
+ }
+}
+
+/* a has >= 2 dts, b doesn't */
+static void dbg_odd(struct lb_env *env,
+ struct sched_group *sga, struct sg_lb_stats *sgsa,
+ struct sched_group *sgb, struct sg_lb_stats *sgsb)
+{
+ if (dbg_odd_nth && (dbg_odd_cnt++ % dbg_odd_nth))
+ return;
+
+ trace_printk("odd: dst=%d idle=%d brk=%u lbtgt=%*pbl type=%d\n",
+ env->dst_cpu, env->idle, env->loop_break,
+ cpumask_pr_args(env->cpus), env->fbq_type);
+ dbg_odd_dump("A: ", sga, sgsa);
+ dbg_odd_dump("B: ", sgb, sgsb);
+}
+
/**
* update_sd_pick_busiest - return 1 on busiest group
* @env: The load balancing environment.
@@ -7432,6 +7582,8 @@ static bool update_sd_pick_busiest(struc
struct sg_lb_stats *sgs)
{
struct sg_lb_stats *busiest = &sds->busiest_stat;
+ bool busiest_has_two = sds->busiest && sg_has_two_schb(sds->busiest);
+ bool sg_has_two = sg_has_two_schb(sg);
if (sgs->group_type > busiest->group_type)
return true;
@@ -7439,8 +7591,14 @@ static bool update_sd_pick_busiest(struc
if (sgs->group_type < busiest->group_type)
return false;
- if (sgs->avg_load <= busiest->avg_load)
+ if (sgs->avg_load <= busiest->avg_load) {
+ if (sg_has_two && !busiest_has_two)
+ dbg_odd(env, sg, sgs, sds->busiest, busiest);
return false;
+ }
+
+ if (!sg_has_two && busiest_has_two)
+ dbg_odd(env, sds->busiest, busiest, sg, sgs);
if (!(env->sd->flags & SD_ASYM_CPUCAPACITY))
goto asym_packing;
[toc] | [prev] | [next] | [standalone]
| From | Peter Zijlstra <peterz@infradead.org> |
|---|---|
| Date | 2017-05-01 18:00 +0200 |
| Message-ID | <tClTX-2yI-1@gated-at.bofh.it> |
| In reply to | #1633141 |
On Fri, Apr 28, 2017 at 04:33:47PM -0400, Tejun Heo wrote: > I'm attaching the debug patch. With your change (avg instead of > runnable_avg), the following trace shows why it's wrong. Ah, OK. So you really want runnable_avg (and I understand why), which is rather unfortunate, since we have everything on load_avg. So for shares, load_avg gives a more stable number. This is important since tg->load_avg is a global number, so computing it is expensive (and slow). Therefore more stable numbers are good. > The thing with cfs_rq se's load_avg is that, it isn't really used > anywhere else AFAICS, so overriding it to the cfs_rq's > runnable_load_avg isn't prettiest but doesn't really change anything. You mean, consistently expressing a group's se->load.weight in terms of runnable_load_avg? See the above.
[toc] | [prev] | [next] | [standalone]
| From | Tejun Heo <tj@kernel.org> |
|---|---|
| Date | 2017-05-03 00:10 +0200 |
| Message-ID | <tCO9z-49R-3@gated-at.bofh.it> |
| In reply to | #1633711 |
Hello, On Mon, May 01, 2017 at 05:56:13PM +0200, Peter Zijlstra wrote: > On Fri, Apr 28, 2017 at 04:33:47PM -0400, Tejun Heo wrote: > > I'm attaching the debug patch. With your change (avg instead of > > runnable_avg), the following trace shows why it's wrong. > > Ah, OK. So you really want runnable_avg (and I understand why), which is > rather unfortunate, since we have everything on load_avg. > > So for shares, load_avg gives a more stable number. This is important > since tg->load_avg is a global number, so computing it is expensive (and > slow). Therefore more stable numbers are good. > > > The thing with cfs_rq se's load_avg is that, it isn't really used > > anywhere else AFAICS, so overriding it to the cfs_rq's > > runnable_load_avg isn't prettiest but doesn't really change anything. > > You mean, consistently expressing a group's se->load.weight in terms of > runnable_load_avg? See the above. I think you got this on the other thread but for clarity: cfs_rq->avg.load_avg is used for share calculation and we want to keep it that way as the calcluation is expensive and rather decoupled across CPUs (the deviation can be quite a bit without the stability). But the group *se*->avg.load_avg is a separate thing which isn't really used anywhere except for as a propagation channel from group cfs_rq to its parent cfs_rq. Thanks. -- tejun
[toc] | [prev] | [next] | [standalone]
| From | Vincent Guittot <vincent.guittot@linaro.org> |
|---|---|
| Date | 2017-05-02 09:20 +0200 |
| Message-ID | <tCAgi-3oI-21@gated-at.bofh.it> |
| In reply to | #1633141 |
On 28 April 2017 at 22:33, Tejun Heo <tj@kernel.org> wrote: > Hello, Vincent. > > On Thu, Apr 27, 2017 at 10:29:10AM +0200, Vincent Guittot wrote: >> On 27 April 2017 at 00:52, Tejun Heo <tj@kernel.org> wrote: >> > Hello, >> > >> > On Wed, Apr 26, 2017 at 08:12:09PM +0200, Vincent Guittot wrote: >> >> On 24 April 2017 at 22:14, Tejun Heo <tj@kernel.org> wrote: >> >> Can the problem be on the load balance side instead ? and more >> >> precisely in the wakeup path ? >> >> After looking at the trace, it seems that task placement happens at >> >> wake up path and if it fails to select the right idle cpu at wake up, >> >> you will have to wait for a load balance which is alreayd too late >> > >> > Oh, I was tracing most of scheduler activities and the ratios of >> > wakeups picking idle CPUs were about the same regardless of cgroup >> > membership. I can confidently say that the latency issue that I'm >> > seeing is from load balancer picking the wrong busiest CPU, which is >> > not to say that there can be other problems. >> >> ok. Is there any trace that you can share ? your behavior seems >> different of mine > > I'm attaching the debug patch. With your change (avg instead of > runnable_avg), the following trace shows why it's wrong. > > It's dumping a case where group A has a CPU w/ more than two schbench > threads and B doesn't, but the load balancer is determining that B is > loaded heavier. > > dbg_odd: odd: dst=28 idle=2 brk=32 lbtgt=0-31 type=2 > dbg_odd_dump: A: grp=1,17 w=2 avg=7.247 grp=8.337 sum=8.337 pertask=2.779 > dbg_odd_dump: A: gcap=1.150 gutil=1.095 run=3 idle=0 gwt=2 type=2 nocap=1 > dbg_odd_dump: A: CPU001: run=1 schb=1 > dbg_odd_dump: A: Q001-asdf: w=1.000,l=0.525,u=0.513,r=0.527 run=1 hrun=1 tgs=100.000 tgw=17.266 > dbg_odd_dump: A: Q001-asdf: schbench(153757C):w=1.000,l=0.527,u=0.514 > dbg_odd_dump: A: Q001-/: w=5.744,l=2.522,u=0.520,r=3.067 run=1 hrun=1 tgs=1.000 tgw=0.000 > dbg_odd_dump: A: Q001-/: asdf(C):w=5.744,l=3.017,u=0.521 > dbg_odd_dump: A: CPU017: run=2 schb=2 > dbg_odd_dump: A: Q017-asdf: w=2.000,l=0.989,u=0.966,r=0.988 run=2 hrun=2 tgs=100.000 tgw=17.266 > dbg_odd_dump: A: Q017-asdf: schbench(153737C):w=1.000,l=0.493,u=0.482 schbench(153739):w=1.000,l=0.494,u=0.483 > dbg_odd_dump: A: Q017-/: w=10.653,l=7.888,u=0.973,r=5.270 run=1 hrun=2 tgs=1.000 tgw=0.000 > dbg_odd_dump: A: Q017-/: asdf(C):w=10.653,l=5.269,u=0.966 > dbg_odd_dump: B: grp=14,30 w=2 avg=7.666 grp=8.819 sum=8.819 pertask=4.409 > dbg_odd_dump: B: gcap=1.150 gutil=1.116 run=2 idle=0 gwt=2 type=2 nocap=1 > dbg_odd_dump: B: CPU014: run=1 schb=1 > dbg_odd_dump: B: Q014-asdf: w=1.000,l=1.004,u=0.970,r=0.492 run=1 hrun=1 tgs=100.000 tgw=17.266 > dbg_odd_dump: B: Q014-asdf: schbench(153760C):w=1.000,l=0.491,u=0.476 > dbg_odd_dump: B: Q014-/: w=5.605,l=11.146,u=0.970,r=5.774 run=1 hrun=1 tgs=1.000 tgw=0.000 > dbg_odd_dump: B: Q014-/: asdf(C):w=5.605,l=5.766,u=0.970 > dbg_odd_dump: B: CPU030: run=1 schb=1 > dbg_odd_dump: B: Q030-asdf: w=1.000,l=0.538,u=0.518,r=0.558 run=1 hrun=1 tgs=100.000 tgw=17.266 > dbg_odd_dump: B: Q030-asdf: schbench(153747C):w=1.000,l=0.537,u=0.516 > dbg_odd_dump: B: Q030-/: w=5.758,l=3.186,u=0.541,r=3.044 run=1 hrun=1 tgs=1.000 tgw=0.000 > dbg_odd_dump: B: Q030-/: asdf(C):w=5.758,l=3.092,u=0.516 > > You can notice that B's pertask weight is 4.409 which is way higher > than A's 2.779, and this is from Q014-asdf's contribution to Q014-/ is > twice as high as it should be. The root queue's runnable avg should Are you sure that this is because of blocked load in group A ? it can be that Q014-asdf has already have to wait before running and its load still increase while runnable but not running . IIUC your trace, group A has 2 running tasks and group B only one but load_balance selects B because of its sgs->avg_load being higher. But this can also happen even if runnable_load_avg of child cfs_rq was propagated correctly in group entity because we can have situation where a group A has only 1 task with higher load than 2 tasks on groupB and even if blocked load is not taken into account, and load_balance will select A. IMHO, we should better improve load balance selection. I'm going to add smarter group selection in load_balance. that's something we should have already done but it was difficult without load/util_avg propagation. it should be doable now > only contain what's currently active but because we're scaling load > avg which includes both active and blocked, we're ending up picking > group B over A. > > This shows up in the total number of times we pick the wrong queue and > thus latency. I'm running the following script with the debug patch > applied. > > #!/bin/bash > > date > cat /proc/self/cgroup > > echo 1000 > /sys/module/fair/parameters/dbg_odd_nth > echo 0 > /sys/module/fair/parameters/dbg_odd_cnt > > ~/schbench -m 2 -t 16 -s 10000 -c 15000 -r 30 > > cat /sys/module/fair/parameters/dbg_odd_cnt > > > With your patch applied, in the root cgroup, > > Fri Apr 28 12:48:59 PDT 2017 > 0::/ > Latency percentiles (usec) > 50.0000th: 26 > 75.0000th: 63 > 90.0000th: 78 > 95.0000th: 88 > *99.0000th: 707 > 99.5000th: 5096 > 99.9000th: 10352 > min=0, max=13743 > 577 > > > In the /asdf cgroup, > > Fri Apr 28 13:19:53 PDT 2017 > 0::/asdf > Latency percentiles (usec) > 50.0000th: 35 > 75.0000th: 67 > 90.0000th: 81 > 95.0000th: 98 > *99.0000th: 2212 > 99.5000th: 4536 > 99.9000th: 11024 > min=0, max=13026 > 1708 > > > The last line is the number of times the load balancer picked a group > w/o more than two schbench threads on a CPU over one w/. Some number > of these are expected as there are other threads and there are some > plays in all the calculations but propgating avg or not propgating at > all significantly increases the count and latency. > >> > The issue isn't about whether runnable_load_avg or load_avg should be >> > used but the unexpected differences in the metrics that the load >> >> I think that's the root of the problem. I explain a bit more my view >> on the other thread > > So, when picking the busiest group, the only thing which matters is > the queue's runnable_load_avg, which should approximate the sum of all > on-queue loads on that CPU. > > If we don't propagate or propagate load_avg, we're factoring in > blocked avg of descendent cgroups into the root's runnable_load_avg > which is obviously wrong. > > We can argue whether overriding a cfs_rq se's load_avg to the scaled > runnable_load_avg of the cfs_rq is the right way to go or we should > introduce a separate channel to propagate runnable_load_avg; however, > it's clear that we need to fix runnable_load_avg propagation one way > or another. The minimum would be to not break load_avg > > The thing with cfs_rq se's load_avg is that, it isn't really used > anywhere else AFAICS, so overriding it to the cfs_rq's > runnable_load_avg isn't prettiest but doesn't really change anything. load_avg is used for defining the share of each cfs_rq. > > Thanks. > > -- > tejun
[toc] | [prev] | [next] | [standalone]
| From | Vincent Guittot <vincent.guittot@linaro.org> |
|---|---|
| Date | 2017-05-02 15:30 +0200 |
| Message-ID | <tCG2n-7dm-29@gated-at.bofh.it> |
| In reply to | #1634182 |
Hi Tejun,
Le Tuesday 02 May 2017 à 09:18:53 (+0200), Vincent Guittot a écrit :
> On 28 April 2017 at 22:33, Tejun Heo <tj@kernel.org> wrote:
> > Hello, Vincent.
> >
> > On Thu, Apr 27, 2017 at 10:29:10AM +0200, Vincent Guittot wrote:
> >> On 27 April 2017 at 00:52, Tejun Heo <tj@kernel.org> wrote:
> >> > Hello,
> >> >
> >> > On Wed, Apr 26, 2017 at 08:12:09PM +0200, Vincent Guittot wrote:
> >> >> On 24 April 2017 at 22:14, Tejun Heo <tj@kernel.org> wrote:
> >> >> Can the problem be on the load balance side instead ? and more
> >> >> precisely in the wakeup path ?
> >> >> After looking at the trace, it seems that task placement happens at
> >> >> wake up path and if it fails to select the right idle cpu at wake up,
> >> >> you will have to wait for a load balance which is alreayd too late
> >> >
> >> > Oh, I was tracing most of scheduler activities and the ratios of
> >> > wakeups picking idle CPUs were about the same regardless of cgroup
> >> > membership. I can confidently say that the latency issue that I'm
> >> > seeing is from load balancer picking the wrong busiest CPU, which is
> >> > not to say that there can be other problems.
> >>
> >> ok. Is there any trace that you can share ? your behavior seems
> >> different of mine
> >
> >
[ snip]
> > You can notice that B's pertask weight is 4.409 which is way higher
> > than A's 2.779, and this is from Q014-asdf's contribution to Q014-/ is
> > twice as high as it should be. The root queue's runnable avg should
>
> Are you sure that this is because of blocked load in group A ? it can
> be that Q014-asdf has already have to wait before running and its load
> still increase while runnable but not running .
> IIUC your trace, group A has 2 running tasks and group B only one but
> load_balance selects B because of its sgs->avg_load being higher. But
> this can also happen even if runnable_load_avg of child cfs_rq was
> propagated correctly in group entity because we can have situation
> where a group A has only 1 task with higher load than 2 tasks on
> groupB and even if blocked load is not taken into account, and
> load_balance will select A.
>
> IMHO, we should better improve load balance selection. I'm going to
> add smarter group selection in load_balance. that's something we
> should have already done but it was difficult without load/util_avg
> propagation. it should be doable now
Could you test the patch in load_balance below ?
If group is not overloaded which means that threads have all runtime they
want, we select the cfs_rq according to the number of running threads instead
---
kernel/sched/fair.c | 22 ++++++++++++++++++++--
1 file changed, 20 insertions(+), 2 deletions(-)
diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index a903276..87e3b77 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -7069,7 +7069,8 @@ static unsigned long task_h_load(struct task_struct *p)
/********** Helpers for find_busiest_group ************************/
enum group_type {
- group_other = 0,
+ group_idle = 0,
+ group_other,
group_imbalanced,
group_overloaded,
};
@@ -7383,6 +7384,9 @@ group_type group_classify(struct sched_group *group,
if (sgs->group_no_capacity)
return group_overloaded;
+ if (!sgs->sum_nr_running)
+ return group_idle;
+
if (sg_imbalanced(group))
return group_imbalanced;
@@ -7476,8 +7480,19 @@ static bool update_sd_pick_busiest(struct lb_env *env,
if (sgs->group_type < busiest->group_type)
return false;
- if (sgs->avg_load <= busiest->avg_load)
+ if (sgs->group_type == group_other) {
+ /*
+ * The groups are not overloaded so there is enough cpu time
+ * for all threads. In this case, takes the group with the
+ * highest number of tasks per CPU in order to improve
+ * scheduling latency
+ */
+ if ((sgs->sum_nr_running * busiest->group_weight) <=
+ (busiest->sum_nr_running * sgs->group_weight))
+ return false;
+ } if (sgs->avg_load <= busiest->avg_load) {
return false;
+ }
if (!(env->sd->flags & SD_ASYM_CPUCAPACITY))
goto asym_packing;
@@ -7969,6 +7984,9 @@ static struct rq *find_busiest_queue(struct lb_env *env,
!check_cpu_capacity(rq, env->sd))
continue;
+ if (!rq->cfs.h_nr_running)
+ continue;
+
/*
* For the load comparisons with the other cpu's, consider
* the weighted_cpuload() scaled with the cpu capacity, so
--
2.7.4
>
> > only contain what's currently active but because we're scaling load
> > avg which includes both active and blocked, we're ending up picking
> > group B over A.
> >
[toc] | [prev] | [next] | [standalone]
| From | Tejun Heo <tj@kernel.org> |
|---|---|
| Date | 2017-05-03 00:40 +0200 |
| Message-ID | <tCOCC-4jl-3@gated-at.bofh.it> |
| In reply to | #1634411 |
Hello, Vincent. On Tue, May 02, 2017 at 03:26:12PM +0200, Vincent Guittot wrote: > > IMHO, we should better improve load balance selection. I'm going to > > add smarter group selection in load_balance. that's something we > > should have already done but it was difficult without load/util_avg > > propagation. it should be doable now > > Could you test the patch in load_balance below ? > If group is not overloaded which means that threads have all runtime they > want, we select the cfs_rq according to the number of running threads instead So, this didn't help. Tried also w/ return true added on the else clause but that didn't help either. Anyways, once debugged, the idea would work for this particular test case and in general we should avoid picking a CPU as the busiest if it doesn't have extra threads to give away; however, this isn't the proper fix for the identified problem and basing load balancing soley on the number of tasks is far more likely to be harmful than the other way around. Thanks. -- tejun
[toc] | [prev] | [next] | [standalone]
| From | Tejun Heo <tj@kernel.org> |
|---|---|
| Date | 2017-05-03 00:00 +0200 |
| Message-ID | <tCNZT-3O5-1@gated-at.bofh.it> |
| In reply to | #1634182 |
Hello, On Tue, May 02, 2017 at 09:18:53AM +0200, Vincent Guittot wrote: > > dbg_odd: odd: dst=28 idle=2 brk=32 lbtgt=0-31 type=2 > > dbg_odd_dump: A: grp=1,17 w=2 avg=7.247 grp=8.337 sum=8.337 pertask=2.779 > > dbg_odd_dump: A: gcap=1.150 gutil=1.095 run=3 idle=0 gwt=2 type=2 nocap=1 > > dbg_odd_dump: A: CPU001: run=1 schb=1 > > dbg_odd_dump: A: Q001-asdf: w=1.000,l=0.525,u=0.513,r=0.527 run=1 hrun=1 tgs=100.000 tgw=17.266 > > dbg_odd_dump: A: Q001-asdf: schbench(153757C):w=1.000,l=0.527,u=0.514 > > dbg_odd_dump: A: Q001-/: w=5.744,l=2.522,u=0.520,r=3.067 run=1 hrun=1 tgs=1.000 tgw=0.000 > > dbg_odd_dump: A: Q001-/: asdf(C):w=5.744,l=3.017,u=0.521 > > dbg_odd_dump: A: CPU017: run=2 schb=2 > > dbg_odd_dump: A: Q017-asdf: w=2.000,l=0.989,u=0.966,r=0.988 run=2 hrun=2 tgs=100.000 tgw=17.266 > > dbg_odd_dump: A: Q017-asdf: schbench(153737C):w=1.000,l=0.493,u=0.482 schbench(153739):w=1.000,l=0.494,u=0.483 > > dbg_odd_dump: A: Q017-/: w=10.653,l=7.888,u=0.973,r=5.270 run=1 hrun=2 tgs=1.000 tgw=0.000 > > dbg_odd_dump: A: Q017-/: asdf(C):w=10.653,l=5.269,u=0.966 > > dbg_odd_dump: B: grp=14,30 w=2 avg=7.666 grp=8.819 sum=8.819 pertask=4.409 > > dbg_odd_dump: B: gcap=1.150 gutil=1.116 run=2 idle=0 gwt=2 type=2 nocap=1 > > dbg_odd_dump: B: CPU014: run=1 schb=1 > > dbg_odd_dump: B: Q014-asdf: w=1.000,l=1.004,u=0.970,r=0.492 run=1 hrun=1 tgs=100.000 tgw=17.266 > > dbg_odd_dump: B: Q014-asdf: schbench(153760C):w=1.000,l=0.491,u=0.476 > > dbg_odd_dump: B: Q014-/: w=5.605,l=11.146,u=0.970,r=5.774 run=1 hrun=1 tgs=1.000 tgw=0.000 > > dbg_odd_dump: B: Q014-/: asdf(C):w=5.605,l=5.766,u=0.970 > > dbg_odd_dump: B: CPU030: run=1 schb=1 > > dbg_odd_dump: B: Q030-asdf: w=1.000,l=0.538,u=0.518,r=0.558 run=1 hrun=1 tgs=100.000 tgw=17.266 > > dbg_odd_dump: B: Q030-asdf: schbench(153747C):w=1.000,l=0.537,u=0.516 > > dbg_odd_dump: B: Q030-/: w=5.758,l=3.186,u=0.541,r=3.044 run=1 hrun=1 tgs=1.000 tgw=0.000 > > dbg_odd_dump: B: Q030-/: asdf(C):w=5.758,l=3.092,u=0.516 > > > > You can notice that B's pertask weight is 4.409 which is way higher > > than A's 2.779, and this is from Q014-asdf's contribution to Q014-/ is > > twice as high as it should be. The root queue's runnable avg should > > Are you sure that this is because of blocked load in group A ? it can > be that Q014-asdf has already have to wait before running and its load > still increase while runnable but not running . This is with propagation enabled, so the only thing contributing to the root queue's runnable_load_avg is the load being propagated from Q014-asdf, which has twice high load avg than runnable. The past history doesn't matter for load balancing and without cgroup this blocked load wouldn't have contributed to root's runnable load avg. I don't think it can get much clearer. > IIUC your trace, group A has 2 running tasks and group B only one but > load_balance selects B because of its sgs->avg_load being higher. But > this can also happen even if runnable_load_avg of child cfs_rq was > propagated correctly in group entity because we can have situation > where a group A has only 1 task with higher load than 2 tasks on > groupB and even if blocked load is not taken into account, and > load_balance will select A. Yes, it can happen with tasks w/ different weights. That's clearly not what's happening here. The load balancer is picking the wrong CPU far more frequently because the root queue's runnable load avg incorrectly includes blocked load avgs from nested cfs_rqs. > IMHO, we should better improve load balance selection. I'm going to > add smarter group selection in load_balance. that's something we > should have already done but it was difficult without load/util_avg > propagation. it should be doable now That's all well and great but let's fix a bug first; otherwise, we'd be papering over an existing issue with a new mechanism which is a bad idea for any code base which has to last. > > We can argue whether overriding a cfs_rq se's load_avg to the scaled > > runnable_load_avg of the cfs_rq is the right way to go or we should > > introduce a separate channel to propagate runnable_load_avg; however, > > it's clear that we need to fix runnable_load_avg propagation one way > > or another. > > The minimum would be to not break load_avg Oh yeah, this I can understand. The proposed change is icky in that it forces group se->load_avg.avg to be runnable_load_avg of the corresponding group cfs_rq. We *can* introduce a separate channel, say, se->group_runnable_load_avg which is used to propagate runnable_load_avg; however, the thing is that we don't really use group se->load_avg.avg anywhere, so we might as well just override it. I have a preliminary patch to introduce a separate field but it looks sad too because we end up calculating the load_avg and runnable_load_avg to propagate separately without actually using the former value anywhere. > > The thing with cfs_rq se's load_avg is that, it isn't really used > > anywhere else AFAICS, so overriding it to the cfs_rq's > > runnable_load_avg isn't prettiest but doesn't really change anything. > > load_avg is used for defining the share of each cfs_rq. Each cfs_rq calculates its load_avg independently from the weight sum. The queued se's load_avgs don't affect cfs_rq's load_avg in any direct way. The only time the value is used is for propagation during migration; however, group se themselves never get migrated themselves and during propagation only deltas matter so the difference between load_avg and runnable_load_avg isn't gonna matter that much. In short, we don't really use group se's load_avg in any way significant. Thanks. -- tejun
[toc] | [prev] | [next] | [standalone]
| From | Vincent Guittot <vincent.guittot@linaro.org> |
|---|---|
| Date | 2017-05-03 09:40 +0200 |
| Message-ID | <tCX3b-1Uk-3@gated-at.bofh.it> |
| In reply to | #1634635 |
Hi Tejun, On 2 May 2017 at 23:50, Tejun Heo <tj@kernel.org> wrote: > Hello, > > On Tue, May 02, 2017 at 09:18:53AM +0200, Vincent Guittot wrote: >> > dbg_odd: odd: dst=28 idle=2 brk=32 lbtgt=0-31 type=2 >> > dbg_odd_dump: A: grp=1,17 w=2 avg=7.247 grp=8.337 sum=8.337 pertask=2.779 >> > dbg_odd_dump: A: gcap=1.150 gutil=1.095 run=3 idle=0 gwt=2 type=2 nocap=1 >> > dbg_odd_dump: A: CPU001: run=1 schb=1 >> > dbg_odd_dump: A: Q001-asdf: w=1.000,l=0.525,u=0.513,r=0.527 run=1 hrun=1 tgs=100.000 tgw=17.266 >> > dbg_odd_dump: A: Q001-asdf: schbench(153757C):w=1.000,l=0.527,u=0.514 >> > dbg_odd_dump: A: Q001-/: w=5.744,l=2.522,u=0.520,r=3.067 run=1 hrun=1 tgs=1.000 tgw=0.000 >> > dbg_odd_dump: A: Q001-/: asdf(C):w=5.744,l=3.017,u=0.521 >> > dbg_odd_dump: A: CPU017: run=2 schb=2 >> > dbg_odd_dump: A: Q017-asdf: w=2.000,l=0.989,u=0.966,r=0.988 run=2 hrun=2 tgs=100.000 tgw=17.266 >> > dbg_odd_dump: A: Q017-asdf: schbench(153737C):w=1.000,l=0.493,u=0.482 schbench(153739):w=1.000,l=0.494,u=0.483 >> > dbg_odd_dump: A: Q017-/: w=10.653,l=7.888,u=0.973,r=5.270 run=1 hrun=2 tgs=1.000 tgw=0.000 >> > dbg_odd_dump: A: Q017-/: asdf(C):w=10.653,l=5.269,u=0.966 >> > dbg_odd_dump: B: grp=14,30 w=2 avg=7.666 grp=8.819 sum=8.819 pertask=4.409 >> > dbg_odd_dump: B: gcap=1.150 gutil=1.116 run=2 idle=0 gwt=2 type=2 nocap=1 >> > dbg_odd_dump: B: CPU014: run=1 schb=1 >> > dbg_odd_dump: B: Q014-asdf: w=1.000,l=1.004,u=0.970,r=0.492 run=1 hrun=1 tgs=100.000 tgw=17.266 >> > dbg_odd_dump: B: Q014-asdf: schbench(153760C):w=1.000,l=0.491,u=0.476 >> > dbg_odd_dump: B: Q014-/: w=5.605,l=11.146,u=0.970,r=5.774 run=1 hrun=1 tgs=1.000 tgw=0.000 >> > dbg_odd_dump: B: Q014-/: asdf(C):w=5.605,l=5.766,u=0.970 >> > dbg_odd_dump: B: CPU030: run=1 schb=1 >> > dbg_odd_dump: B: Q030-asdf: w=1.000,l=0.538,u=0.518,r=0.558 run=1 hrun=1 tgs=100.000 tgw=17.266 >> > dbg_odd_dump: B: Q030-asdf: schbench(153747C):w=1.000,l=0.537,u=0.516 >> > dbg_odd_dump: B: Q030-/: w=5.758,l=3.186,u=0.541,r=3.044 run=1 hrun=1 tgs=1.000 tgw=0.000 >> > dbg_odd_dump: B: Q030-/: asdf(C):w=5.758,l=3.092,u=0.516 >> > >> > You can notice that B's pertask weight is 4.409 which is way higher >> > than A's 2.779, and this is from Q014-asdf's contribution to Q014-/ is >> > twice as high as it should be. The root queue's runnable avg should >> >> Are you sure that this is because of blocked load in group A ? it can >> be that Q014-asdf has already have to wait before running and its load >> still increase while runnable but not running . > > This is with propagation enabled, so the only thing contributing to > the root queue's runnable_load_avg is the load being propagated from > Q014-asdf, which has twice high load avg than runnable. The past > history doesn't matter for load balancing and without cgroup this > blocked load wouldn't have contributed to root's runnable load avg. I > don't think it can get much clearer. > >> IIUC your trace, group A has 2 running tasks and group B only one but >> load_balance selects B because of its sgs->avg_load being higher. But >> this can also happen even if runnable_load_avg of child cfs_rq was >> propagated correctly in group entity because we can have situation >> where a group A has only 1 task with higher load than 2 tasks on >> groupB and even if blocked load is not taken into account, and >> load_balance will select A. > > Yes, it can happen with tasks w/ different weights. That's clearly > not what's happening here. The load balancer is picking the wrong CPU > far more frequently because the root queue's runnable load avg > incorrectly includes blocked load avgs from nested cfs_rqs. > >> IMHO, we should better improve load balance selection. I'm going to >> add smarter group selection in load_balance. that's something we >> should have already done but it was difficult without load/util_avg >> propagation. it should be doable now > > That's all well and great but let's fix a bug first; otherwise, we'd > be papering over an existing issue with a new mechanism which is a bad > idea for any code base which has to last. runnable_load_avg is already a kind of fix and breaking load_avg seems worse than fixing load_balance > >> > We can argue whether overriding a cfs_rq se's load_avg to the scaled >> > runnable_load_avg of the cfs_rq is the right way to go or we should >> > introduce a separate channel to propagate runnable_load_avg; however, >> > it's clear that we need to fix runnable_load_avg propagation one way >> > or another. >> >> The minimum would be to not break load_avg > > Oh yeah, this I can understand. The proposed change is icky in that > it forces group se->load_avg.avg to be runnable_load_avg of the > corresponding group cfs_rq. We *can* introduce a separate channel, > say, se->group_runnable_load_avg which is used to propagate > runnable_load_avg; however, the thing is that we don't really use > group se->load_avg.avg anywhere, so we might as well just override it. We use load_avg for calculating a stable share and we want to use it more and more. So breaking it because it's easier doesn't seems to be the right way to do IMHO > > I have a preliminary patch to introduce a separate field but it looks > sad too because we end up calculating the load_avg and > runnable_load_avg to propagate separately without actually using the > former value anywhere. > >> > The thing with cfs_rq se's load_avg is that, it isn't really used >> > anywhere else AFAICS, so overriding it to the cfs_rq's >> > runnable_load_avg isn't prettiest but doesn't really change anything. >> >> load_avg is used for defining the share of each cfs_rq. > > Each cfs_rq calculates its load_avg independently from the weight sum. > The queued se's load_avgs don't affect cfs_rq's load_avg in any direct > way. The only time the value is used is for propagation during > migration; however, group se themselves never get migrated themselves > and during propagation only deltas matter so the difference between > load_avg and runnable_load_avg isn't gonna matter that much. In > short, we don't really use group se's load_avg in any way significant. > > Thanks. > > -- > tejun
[toc] | [prev] | [next] | [standalone]
| From | Peter Zijlstra <peterz@infradead.org> |
|---|---|
| Date | 2017-05-03 11:40 +0200 |
| Message-ID | <tCYVk-3kJ-15@gated-at.bofh.it> |
| In reply to | #1634786 |
On Wed, May 03, 2017 at 09:34:51AM +0200, Vincent Guittot wrote: > We use load_avg for calculating a stable share and we want to use it > more and more. So breaking it because it's easier doesn't seems to be > the right way to do IMHO So afaict we calculate group se->load.weight (aka shares, see calc_cfs_shares), using cfs_rq->avg.load_avg, which feeds into tg->load_avg through cfs_rq->tg_load_avg_contrib and cfs_rq->load.weight. And cfs_rq->avg.load_avg is computed from cfs_rq->load.weight, which is \Sum se->load.weight. OTOH group se->avg.load_avg isn't used much, which is TJ's point. The only cases where group se->avg.load_avg are relevant to cfs_rq->avg.load are the cases I listed yesterday, group creation and group destruction. There we use the group se->avg.load_avg to manage the boundary conditions. So with the proposed change to se->avg.load_avg we can have some (temporary) boundary effect when you destroy a lot of (previously active) cgroups. Of course, it could be I overlooked something, in which case, please tell :-) That said, I agree it would be nice to entirely get rid of runnable_avg, but that is a much larger change and would require a lot more work. I don't immediately see why we can't fix the thing now and then work on removing runnable_load_avg later. Of course, we should not regress either, I'll go read up on that part.
[toc] | [prev] | [next] | [standalone]
| From | Vincent Guittot <vincent.guittot@linaro.org> |
|---|---|
| Date | 2017-05-03 12:40 +0200 |
| Message-ID | <tCZRn-41a-1@gated-at.bofh.it> |
| In reply to | #1634834 |
On 3 May 2017 at 11:37, Peter Zijlstra <peterz@infradead.org> wrote: > > On Wed, May 03, 2017 at 09:34:51AM +0200, Vincent Guittot wrote: > > > We use load_avg for calculating a stable share and we want to use it > > more and more. So breaking it because it's easier doesn't seems to be > > the right way to do IMHO > > So afaict we calculate group se->load.weight (aka shares, see > calc_cfs_shares), using cfs_rq->avg.load_avg, which feeds into > tg->load_avg through cfs_rq->tg_load_avg_contrib and > cfs_rq->load.weight. > > And cfs_rq->avg.load_avg is computed from cfs_rq->load.weight, which > is \Sum se->load.weight. > > OTOH group se->avg.load_avg isn't used much, which is TJ's point. > > The only cases where group se->avg.load_avg are relevant to > cfs_rq->avg.load are the cases I listed yesterday, group creation and > group destruction. There we use the group se->avg.load_avg to manage the > boundary conditions. > > So with the proposed change to se->avg.load_avg we can have some > (temporary) boundary effect when you destroy a lot of (previously > active) cgroups. > > > Of course, it could be I overlooked something, in which case, please > tell :-) That's mainly based on the regression i see on my platform. I haven't find the root cause of the regression but it's there which means that using group_entity's load_avg to propagate child cfs_rq runnable_load_avg breaks something > > > That said, I agree it would be nice to entirely get rid of runnable_avg, > but that is a much larger change and would require a lot more work. I > don't immediately see why we can't fix the thing now and then work on > removing runnable_load_avg later. What propose Tejun is to break the group's load_avg and make it follows child cfs_rq's runnable_load_avg instead of child cfs_rq's load_avg so it will be difficult if not possible to try to move load_balance on load_avg and remove runnable_load_avg later on if load_avg doesn't work anymore as expected. So keeping group's load_avg working correctly seems a key point Then, we know that we still have wrong behavior with runnable_load_avg when running task's load are really different. so it fixes part of wider problem IMO > > Of course, we should not regress either, I'll go read up on that part. >
[toc] | [prev] | [next] | [standalone]
| From | Peter Zijlstra <peterz@infradead.org> |
|---|---|
| Date | 2017-05-03 15:20 +0200 |
| Message-ID | <tD2md-5RN-11@gated-at.bofh.it> |
| In reply to | #1634857 |
On Wed, May 03, 2017 at 12:37:37PM +0200, Vincent Guittot wrote: > On 3 May 2017 at 11:37, Peter Zijlstra <peterz@infradead.org> wrote: > > Of course, it could be I overlooked something, in which case, please > > tell :-) > > That's mainly based on the regression i see on my platform. I haven't > find the root cause of the regression but it's there which means that > using group_entity's load_avg to propagate child cfs_rq > runnable_load_avg breaks something (as mentioned on IRC) Right.. so looking through the code, (group) se->avg.load_avg is used in effective_load() (and thereby wake_affine()) and update_cfs_rq_h_load() (and therefore task_h_load()). So changing it will affect those two functions, which could well lead to your regression.
[toc] | [prev] | [next] | [standalone]
| From | Tejun Heo <tj@kernel.org> |
|---|---|
| Date | 2017-05-03 23:50 +0200 |
| Message-ID | <tDajL-2yX-5@gated-at.bofh.it> |
| In reply to | #1634969 |
On Wed, May 03, 2017 at 03:09:38PM +0200, Peter Zijlstra wrote: > On Wed, May 03, 2017 at 12:37:37PM +0200, Vincent Guittot wrote: > > On 3 May 2017 at 11:37, Peter Zijlstra <peterz@infradead.org> wrote: > > > > Of course, it could be I overlooked something, in which case, please > > > tell :-) > > > > That's mainly based on the regression i see on my platform. I haven't > > find the root cause of the regression but it's there which means that > > using group_entity's load_avg to propagate child cfs_rq > > runnable_load_avg breaks something > > (as mentioned on IRC) > > Right.. so looking through the code, (group) se->avg.load_avg is used in > effective_load() (and thereby wake_affine()) and update_cfs_rq_h_load() > (and therefore task_h_load()). > > So changing it will affect those two functions, which could well lead to > your regression. Ah, okay, that makes sense. I'll try to finish the patch to propagate runnable without affecting group se->avg.load_avg. BTW, Vincent, did you boost the weight of the cgroup when you were testing? If you put schbench inside a cgroup and have some base load, it is actually expected to show worse latency. You need to give higher weight to the cgroup matching the number of active threads (to be accruate, scaled by duty cycle but shouldn't matter too much in practice). Thanks. -- tejun
[toc] | [prev] | [next] | [standalone]
| From | Vincent Guittot <vincent.guittot@linaro.org> |
|---|---|
| Date | 2017-05-04 10:30 +0200 |
| Message-ID | <tDkj8-Vp-3@gated-at.bofh.it> |
| In reply to | #1635291 |
On 3 May 2017 at 23:49, Tejun Heo <tj@kernel.org> wrote: > On Wed, May 03, 2017 at 03:09:38PM +0200, Peter Zijlstra wrote: >> On Wed, May 03, 2017 at 12:37:37PM +0200, Vincent Guittot wrote: >> > On 3 May 2017 at 11:37, Peter Zijlstra <peterz@infradead.org> wrote: >> >> > > Of course, it could be I overlooked something, in which case, please >> > > tell :-) >> > >> > That's mainly based on the regression i see on my platform. I haven't >> > find the root cause of the regression but it's there which means that >> > using group_entity's load_avg to propagate child cfs_rq >> > runnable_load_avg breaks something >> >> (as mentioned on IRC) >> >> Right.. so looking through the code, (group) se->avg.load_avg is used in >> effective_load() (and thereby wake_affine()) and update_cfs_rq_h_load() >> (and therefore task_h_load()). >> >> So changing it will affect those two functions, which could well lead to >> your regression. > > Ah, okay, that makes sense. I'll try to finish the patch to propagate > runnable without affecting group se->avg.load_avg. BTW, Vincent, did > you boost the weight of the cgroup when you were testing? If you put I use default group weight > schbench inside a cgroup and have some base load, it is actually > expected to show worse latency. You need to give higher weight to the > cgroup matching the number of active threads (to be accruate, scaled > by duty cycle but shouldn't matter too much in practice). I don't have to change anything cgroup weight with mainline to get good number which means that the base load which is quite close to null, is probably not the problem > > Thanks. > > -- > tejun
[toc] | [prev] | [next] | [standalone]
| From | Tejun Heo <tj@kernel.org> |
|---|---|
| Date | 2017-05-04 19:50 +0200 |
| Message-ID | <tDt34-6JH-17@gated-at.bofh.it> |
| In reply to | #1635474 |
Hello, On Thu, May 04, 2017 at 10:19:46AM +0200, Vincent Guittot wrote: > > schbench inside a cgroup and have some base load, it is actually > > expected to show worse latency. You need to give higher weight to the > > cgroup matching the number of active threads (to be accruate, scaled > > by duty cycle but shouldn't matter too much in practice). > > I don't have to change anything cgroup weight with mainline to get > good number which means that the base load which is quite close to > null, is probably not the problem So, while that *could* be the case, it could also be the baseline incorrectly favoring the nested cfs_rqs over other tasks because of the nested runnables being inflated with blocked load avgs. I think it'd be a good idea to test with matching weight to put things on the even ground. Thanks. -- tejun
[toc] | [prev] | [next] | [standalone]
| From | Vincent Guittot <vincent.guittot@linaro.org> |
|---|---|
| Date | 2017-05-04 21:10 +0200 |
| Message-ID | <tDuiu-7H9-9@gated-at.bofh.it> |
| In reply to | #1635934 |
Hi Tejun, On 4 May 2017 at 19:43, Tejun Heo <tj@kernel.org> wrote: > Hello, > > On Thu, May 04, 2017 at 10:19:46AM +0200, Vincent Guittot wrote: >> > schbench inside a cgroup and have some base load, it is actually >> > expected to show worse latency. You need to give higher weight to the >> > cgroup matching the number of active threads (to be accruate, scaled >> > by duty cycle but shouldn't matter too much in practice). >> >> I don't have to change anything cgroup weight with mainline to get >> good number which means that the base load which is quite close to >> null, is probably not the problem > > So, while that *could* be the case, it could also be the baseline > incorrectly favoring the nested cfs_rqs over other tasks because of > the nested runnables being inflated with blocked load avgs. I think > it'd be a good idea to test with matching weight to put things on the > even ground. In the trace i have uploaded, you will see that regressions happen whereas there is no other runnable threads around so it's not a matter of background activities that disturbs schbench Thanks Vincent > > Thanks. > > -- > tejun
[toc] | [prev] | [next] | [standalone]
| From | Tejun Heo <tj@kernel.org> |
|---|---|
| Date | 2017-05-04 21:10 +0200 |
| Message-ID | <tDuiu-7H9-21@gated-at.bofh.it> |
| In reply to | #1635977 |
Hello, Vincent. On Thu, May 04, 2017 at 09:02:39PM +0200, Vincent Guittot wrote: > In the trace i have uploaded, you will see that regressions happen > whereas there is no other runnable threads around so it's not a matter > of background activities that disturbs schbench Understood, yeah, I'm almost done with the patches to propagate runnable w/o disturbing load_avg. Will post them soon. Thanks. -- tejun
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web