public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Gui Jianfeng <guijianfeng@cn.fujitsu.com>
To: Vivek Goyal <vgoyal@redhat.com>
Cc: linux-kernel@vger.kernel.org, jens.axboe@oracle.com,
	nauman@google.com, lizf@cn.fujitsu.com, ryov@valinux.co.jp,
	fernando@oss.ntt.co.jp, taka@valinux.co.jp, jmoyer@redhat.com,
	m-ikeda@ds.jp.nec.com, czoccolo@gmail.com, Alan.Brunelle@hp.com
Subject: Re: [RFC] CFQ group scheduling structure organization
Date: Thu, 17 Dec 2009 18:17:43 +0800	[thread overview]
Message-ID: <4B2A0547.4040507@cn.fujitsu.com> (raw)
In-Reply-To: <1261003980-10115-1-git-send-email-vgoyal@redhat.com>

Vivek Goyal wrote:
> Hi All,
> 
> With some basic group scheduling support in CFQ, there are few questions
> regarding how group structure should look like in CFQ.
> 
> Currently, grouping looks as follows. A, and B are two cgroups created by
> user.
> 
> Proposal 1:
> =========
> 			grp-service-tree
> 			/      |     \
> 		    root       A     B
> 
> One issue with this structure is that RT tasks are not system wide. So an
> RT tasks inside root group has RT priority only with-in root group. So a
> BE task inside A will get it fair share despite the fact that root has got
> RT tasks.
> 
> 
> Proposal 2:
> ==========
> One proposal to solve this issue is that make RT and IDLE tasks system
> wide and provide weight based service differentiation only for BE class
> tasks. So RT or IDLE tasks running in any of the groups will automatically
> move to one global RT group maintained by CFQ internally. Same is true for
> IDLE tasks. But BE class tasks will honor the cgroup limitations and will
> get differentiated service according to weight.
> 
> Internal structure will look as follows.
> 
>      grp-RT-service-tree  grp-BE-service-tree   grp-IDLE-service-tree 
>              |		      /  \                      |
> 	all_RT_task_group    A   B               all_idle_tasks_grp
> 		
> 
> Here A and B are two cgroups and some BE tasks might be running inside 
> those groups. systemwide RT tasks will move under all_RT_task_group and
> all idle tasks will move under all_idle_tasks_grp.
> 
> So one will notice service differentiation only for BE tasks.

Hi Vivek,

I still think that we need to give choices for users. When an user want to give
RT Tasks service differentiation, we shouldn't treat all RT tasks as systemwide.
But if a user want better latency for RT tasks, we treat them systemwide. CFQ can
rely on sysfs tunable to achieve this.

Thanks
Gui

> 
> 
> Proposal 3:
> ===========
> 
> One can argue that we need group service differentiation for RT class
> tasks also and don't move tasks automatically across groups. That means
> we need to support "group class" type also. Probably we can support
> three classes of cgroups RT, BE and IDLE and CFQ will use that data to
> put cgroups in respective tree. 
> 
> Things should look as follows.
> 
>      grp-RT-service-tree  grp-BE-service-tree   grp-IDLE-service-tree 
>              / \		      /  \             /   \  
> 	    C  D                     A   B            E    F
> 
> 
> Here A and B are BE type groups created by user.
> C and D are RT type cgroups created by user.
> E and F are IDLE type cgroups created by user.
> 
> Now in this scheme of things, by default root will be of type BE. Any task
> RT task under "root" group will not be system wide RT task. It will be RT
> only with-in root group. To make it system wide idle, admin shall have to
> create a new cgroup, say C, of type RT and move task in that cgroup.
> Because RT group C is system wide, now that task becomes system wide RT.
> 
> So this scheme might throw some surprise to existing users. They might
> create a new group and not realize that their RT tasks are no more system
> wide RT tasks and they need to specifically create one RT cgroup and move
> all RT tasks in that cgroup.
> 
> Practically I am not sure how many people are looking for group service
> differentiation for RT and IDLE class tasks also.
> 
> Proposal 4:
> ==========
> Treat task and group at same level. Currently groups are at top level and
> at second level are tasks. View the whole hierarchy as follows.
> 
> 
> 			service-tree
> 			/   |  \  \
> 		       T1   T2  G1 G2
> 
> Here T1 and T2 are two tasks in root group and G1 and G2 are two cgroups
> created under root.
> 
> In this kind of scheme, any RT task in root group will still be system
> wide RT even if we create groups G1 and G2.
> 
> So what are the issues?
> 
> - I talked to few folks and everybody found this scheme not so intutive.
>   Their argument was that once I create a cgroup, say A,  under root, then
>   bandwidth should be divided between "root" and "A" proportionate to
>   the weight.
> 
>   It is not very intutive that group is competing with all the tasks 
>   running in root group. And disk share of newly created group will change
>   if more tasks fork in root group. So it is highly dynamic and not
>   static hence un-intutive.
> 
>   To emulate the behavior of previous proposals, root shall have to create
>   a new group and move all root tasks there. But admin shall have to still 
>   keep RT tasks in root group so that they still remain system-wide.
> 
> 			service-tree
> 			/   |    \  \
> 		       T1  root  G1 G2
> 			    |
> 			    T2
> 
>   Now admin has specifically created a group "root" along side G1 and G2
>   and moved T2 under root. T1 is still left in top level group as it might
>   be an RT task and we want it to remain RT task systemwide.
> 
>   So to some people this scheme is un-intutive and requires more work in
>   user space to achive desired behavior. I am kind of 50:50 between two
>   kind of arrangements.
> 
> 
> I am looking for some feedback on what makes most sense.
> 
> For the time being, I am little inclined towards proposal 2 and I have
> implemented a proof of concept version on top of for-2.6.33 branch in block
> tree.  These patches are compile and boot tested only and I have yet to do
> testing.
> 
> Thanks
> Vivek
> 
> 
> 


  parent reply	other threads:[~2009-12-17 10:22 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-12-16 22:52 [RFC] CFQ group scheduling structure organization Vivek Goyal
2009-12-16 22:52 ` [PATCH 1/4] cfq-iosced: Remove the check for same cfq group from allow_merge Vivek Goyal
2009-12-17  9:26   ` Gui Jianfeng
2009-12-16 22:52 ` [PATCH 2/4] cfq-iosched: Get rid of nr_groups Vivek Goyal
2009-12-17  9:26   ` Gui Jianfeng
2009-12-16 22:52 ` [PATCH 3/4] cfq-iosched: Remove prio_change logic for workload selection Vivek Goyal
2009-12-17  9:20   ` Gui Jianfeng
2009-12-18 15:17     ` Vivek Goyal
2009-12-20  4:19       ` Gui Jianfeng
2009-12-17 11:49   ` Corrado Zoccolo
2009-12-16 22:53 ` [PATCH 4/4] cfq-iosched: Implement system wide RT and IDLE groups Vivek Goyal
2009-12-16 23:14 ` [RFC] CFQ group scheduling structure organization Nauman Rafique
2009-12-16 23:24   ` Vivek Goyal
2009-12-17 10:17 ` Gui Jianfeng [this message]
2009-12-18 15:21   ` Vivek Goyal
2009-12-17 11:41 ` Corrado Zoccolo
2009-12-17 23:58   ` Munehiro Ikeda
2009-12-18 16:01     ` Vivek Goyal
2009-12-21 12:16     ` Jens Axboe
2009-12-21 14:42       ` Vivek Goyal
2009-12-18 15:49   ` Vivek Goyal

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=4B2A0547.4040507@cn.fujitsu.com \
    --to=guijianfeng@cn.fujitsu.com \
    --cc=Alan.Brunelle@hp.com \
    --cc=czoccolo@gmail.com \
    --cc=fernando@oss.ntt.co.jp \
    --cc=jens.axboe@oracle.com \
    --cc=jmoyer@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lizf@cn.fujitsu.com \
    --cc=m-ikeda@ds.jp.nec.com \
    --cc=nauman@google.com \
    --cc=ryov@valinux.co.jp \
    --cc=taka@valinux.co.jp \
    --cc=vgoyal@redhat.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox