lkml.org 
[lkml]   [2014]   [May]   [15]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [RFD] sched/deadline: EDF dynamic quota design
Hi,

[Cc-ed lkml again to include Luca's reply]

and thanks to Luca for his reply!

On Thu, 15 May 2014 19:21:25 +0800
"xiaofeng.yan" <xiaofeng.yan@huawei.com> wrote:

> On 2014/5/14 21:17, Luca Abeni wrote:
> > Hi Peter,
> >
> > thanks for adding me in cc :)
> > This dynamic quota design looks similar to some resource reclaiming
> > algorithm
> > known in literature, and might be related to some feedback scheduling
> > ideas.
> > More details below...
> >
> > On 05/14/2014 01:32 PM, Peter Zijlstra wrote:
> > [...]
> >>> * Example.
> >>> Three tasks: T1,T2,T3. Their initial status is as follows,
> >>> T1(200us,500us,500us)
> >>> T2(200us,500us,500us)
> >>> T3(200us,500us,500us)
> >>>
> >>> At time t1, the tasks' running status is as follows,
> >>> T1(200us,500us,500us)
> >>> T2(100us,500us,500us)
> >>> T3(200us,500us,500us)
> >>> Busy tasks: T1,T3
> >>> Idle task: T2
> >>> Bandwidth pool: 20%
> >>>
> >>> Now, there are 20% quota in the bandwidth pool, T1 or T3 get 5%
> >>> quota
> >>> (adjustable) from the bandwidth pool when they enter run-queue.
> >>> Then, the status is as follows:
> >>> T1(225us,500us,500us)
> >>> T2(100us,500us,500us)
> >>> T3(225us,500us,500us)
> >>> Bandwidth pool: 10%
> >>>
> >>> Busy tasks could get the quota when the bandwidth pool is not empty.
> >>>
> >>> ----------------------------------------------------------------------------------------
> >>>
> >>
> >> Yeah, not sure that's sound. But I'll leave that to others.
> > The idea (donating to other tasks some of the runtime reserved to a task
> > but actually unused because the task is busy) is sound, but it must be
> > done
> > carefully, otherwise the guarantees about reserved runtimes risk to be
> > broken.
> >
> > This (CPU reclaiming) has been investigated in the past, and a lot of
> > possible
> > algorithms have been proposed. For example, see:
> > "Greedy reclamation of unused bandwidth in constant-bandwidth servers" by
> > Lipari and others:
> > http://scholar.google.com/scholar?cluster=3702635449685717385&hl=it&as_sdt=0,5
> >
> > or
> > "Capacity sharing for overrun control" by Caccamo and others:
> > http://scholar.google.com/scholar?cluster=8595685180937180485&hl=it&as_sdt=0,5
> >
> > and of course all of the related papers found by Scholar (I cited
> > these two
> > papers because I can easily remember them, but there are many other).
> > There is also a nice paper by Scott Brandt that compares the
> > implementations
> > of multiple reclaiming algorithms, but I do not remember the title.
> >
> > All of these papers provide a more sound theoretical foundation for
> > runtime/budget
> > donation/sharing.
> >
> > As a form of shameless self-advertisement, I have also to mention that
> > adaptive
> > reservations (feedback scheduling based on CBS/SCHED_DEADLINE) can be
> > related,
> > allowing to dynamically adapt the runtime to the actual tasks demands.
> > For example, see "Analysis of a reservation-based feedback scheduler":
> > http://scholar.google.com/scholar?cluster=2878648944333333913&hl=it&as_sdt=0,5
> >
> >
> > This can also be implemented in user-space (without modifying the
> > scheduler)
> > by having a daemon that monitors the SCHED_DEADLINE tasks and changes
> > their
> > runtimes based on some kind of feedback (for example, difference
> > between the
> > scheduling deadline of a task and its actual deadline - if this
> > information
> > is made available by the scheduler). I developed a similar
> > implementation in
> > the past (not based on SCHED_DEADLINE, but on some previous
> > implementation
> > of the CBS algorithm).
> >
> >
> > Hope these references can help someone... :)
> >
> Thanks very much for your reply in time. I will read the above paper
> you referred to.
> We just implemented simple dynamic quota according to our product
> requirement without many theories.

And this is quite a big "without", I fear. The timeliness guarantees
you can give to users are based on the theory behind the algorithms we
implement. If you change the implementation, without any proof of
theoretical soundness, you risk to break them all.

But, this doesn't mean that what you did is wrong. We'd just have to
see if can be proved to be right (in theory :)).

> In our scene some tasks are continuous for busy or idle state more than
> alternating busy tasks and idle task between periods.
> So our method can get good performance during date package forwarding.

Not sure I understand this. But see below..

> Thanks for the authors to implement EDF based on linux. This schedule
> class has been applied in product.

And this is great news! :)

Any way you can share more information on the use-case? That would be
helpful to also understand your solution better.

> Will EDF has dynamic quota in future?

Well, as Luca said, you can already use SCHED_DEADLINE as the backend
for feedback scheduling (that pertain mostly to user-space).

And yes, there are already thoughts to modify it a bit to go towards
Lipari's et al. GRUB algorithm. That would be probably helpful in
situations like yours. But I can't give you any timing for it.

> It is already having real-world impacts.

Great news again ;).

Thanks,

- Juri

> Thanks
> Yan
> >
> >
> > Luca
> >
> > .
> >
>
>


\
 
 \ /
  Last update: 2014-05-15 15:01    [W:0.396 / U:0.088 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site