All of lore.kernel.org
 help / color / mirror / Atom feed
* Improving latency and ordering of the backfilling workload
@ 2014-12-15 14:24 Loic Dachary
  2014-12-15 16:44 ` Sage Weil
  0 siblings, 1 reply; 9+ messages in thread
From: Loic Dachary @ 2014-12-15 14:24 UTC (permalink / raw)
  To: Samuel Just; +Cc: Ceph Development

[-- Attachment #1: Type: text/plain, Size: 984 bytes --]

Hi Sam,

Here is what could be done (in the context of http://tracker.ceph.com/issues/9566
), please let me know if that makes sense:

* ordering:

  * when dequeuing a pending local reservation, chose one that contains a PG that belongs to the busiest OSD (i.e. the OSD for which there are more PGs waiting for a local reservation than any other)
  * when sending a remote reservation request, set the priority to reflect the total number of pending PG (absolute workload) and the number local pending PG for the destination OSD (workload queued locally for the remote OSD)
  * on the receiving side, the priority of the remote reservation request makes sure the busiest OSD gets a remote reservation before the others

* reducing latency:
  
  * if there are N pending remote reservations, reject a remote reservation request instead of queuing it so that the local reservation can be used instead of waiting.

Cheers

-- 
Loïc Dachary, Artisan Logiciel Libre


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Improving latency and ordering of the backfilling workload
  2014-12-15 14:24 Improving latency and ordering of the backfilling workload Loic Dachary
@ 2014-12-15 16:44 ` Sage Weil
  2014-12-15 17:01   ` Pavan Rallabhandi
  2014-12-15 17:09   ` Loic Dachary
  0 siblings, 2 replies; 9+ messages in thread
From: Sage Weil @ 2014-12-15 16:44 UTC (permalink / raw)
  To: Loic Dachary; +Cc: Samuel Just, Ceph Development

On Mon, 15 Dec 2014, Loic Dachary wrote:
> Hi Sam,
> 
> Here is what could be done (in the context of http://tracker.ceph.com/issues/9566
> ), please let me know if that makes sense:
> 
> * ordering:
> 
>   * when dequeuing a pending local reservation, chose one that contains 
> a PG that belongs to the busiest OSD (i.e. the OSD for which there are 
> more PGs waiting for a local reservation than any other)

I'm worried the reservation count won't be an accurate enough proxy for 
the amount of work the remote OSD has to do.  It would be very easy to 
piggyback some load information on the heartbeat messages which we should 
already be exchanging with anyone we would backfill with.

If we go down that path, there are a bunch of patches in the wip-read-hole 
series that lay useful groundwork.  Getting that branch into shape 
is the next big item after I finish the current batch of pull 
requests.

>   * when sending a remote reservation request, set the priority to 
> reflect the total number of pending PG (absolute workload) and the 
> number local pending PG for the destination OSD (workload queued locally 
> for the remote OSD)
>   * on the receiving side, the priority of the remote reservation 
> request makes sure the busiest OSD gets a remote reservation before the 
> others
> 
> * reducing latency:
>   
>   * if there are N pending remote reservations, reject a remote 
> reservation request instead of queuing it so that the local reservation 
> can be used instead of waiting.
> 
> Cheers
> 
> -- 
> Lo?c Dachary, Artisan Logiciel Libre
> 
> 


^ permalink raw reply	[flat|nested] 9+ messages in thread

* RE: Improving latency and ordering of the backfilling workload
  2014-12-15 16:44 ` Sage Weil
@ 2014-12-15 17:01   ` Pavan Rallabhandi
  2014-12-15 17:09   ` Loic Dachary
  1 sibling, 0 replies; 9+ messages in thread
From: Pavan Rallabhandi @ 2014-12-15 17:01 UTC (permalink / raw)
  To: Sage Weil, Loic Dachary; +Cc: Samuel Just, Ceph Development



-----Original Message-----
From: ceph-devel-owner@vger.kernel.org [mailto:ceph-devel-owner@vger.kernel.org] On Behalf Of Sage Weil
Sent: Monday, December 15, 2014 10:15 PM
To: Loic Dachary
Cc: Samuel Just; Ceph Development
Subject: Re: Improving latency and ordering of the backfilling workload

On Mon, 15 Dec 2014, Loic Dachary wrote:
> Hi Sam,
>
> Here is what could be done (in the context of
> http://tracker.ceph.com/issues/9566
> ), please let me know if that makes sense:
>
> * ordering:
>
>   * when dequeuing a pending local reservation, chose one that
> contains a PG that belongs to the busiest OSD (i.e. the OSD for which
> there are more PGs waiting for a local reservation than any other)

I'm worried the reservation count won't be an accurate enough proxy for the amount of work the remote OSD has to do.  It would be very easy to piggyback some load information on the heartbeat messages which we should already be exchanging with anyone we would backfill with.

If we go down that path, there are a bunch of patches in the wip-read-hole series that lay useful groundwork.  Getting that branch into shape is the next big item after I finish the current batch of pull requests.

>   * when sending a remote reservation request, set the priority to
> reflect the total number of pending PG (absolute workload) and the
> number local pending PG for the destination OSD (workload queued
> locally for the remote OSD)
>   * on the receiving side, the priority of the remote reservation
> request makes sure the busiest OSD gets a remote reservation before
> the others
>
> * reducing latency:
>
>   * if there are N pending remote reservations, reject a remote
> reservation request instead of queuing it so that the local
> reservation can be used instead of waiting.
>
> Cheers
>
> --
> Lo?c Dachary, Artisan Logiciel Libre
>
>

--
To unsubscribe from this list: send the line "unsubscribe ceph-devel" in the body of a message to majordomo@vger.kernel.org More majordomo info at  http://vger.kernel.org/majordomo-info.html

________________________________

PLEASE NOTE: The information contained in this electronic mail message is intended only for the use of the designated recipient(s) named above. If the reader of this message is not the intended recipient, you are hereby notified that you have received this message in error and that any review, dissemination, distribution, or copying of this message is strictly prohibited. If you have received this communication in error, please notify the sender by telephone or e-mail (as shown above) immediately and destroy any and all copies of this message in your possession (whether hard copies or electronically stored copies).


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Improving latency and ordering of the backfilling workload
  2014-12-15 16:44 ` Sage Weil
  2014-12-15 17:01   ` Pavan Rallabhandi
@ 2014-12-15 17:09   ` Loic Dachary
  2014-12-15 17:20     ` Sage Weil
  1 sibling, 1 reply; 9+ messages in thread
From: Loic Dachary @ 2014-12-15 17:09 UTC (permalink / raw)
  To: Sage Weil; +Cc: Ceph Development

[-- Attachment #1: Type: text/plain, Size: 2306 bytes --]

Hi Sage,

On 15/12/2014 17:44, Sage Weil wrote:
> On Mon, 15 Dec 2014, Loic Dachary wrote:
>> Hi Sam,
>>
>> Here is what could be done (in the context of http://tracker.ceph.com/issues/9566
>> ), please let me know if that makes sense:
>>
>> * ordering:
>>
>>   * when dequeuing a pending local reservation, chose one that contains 
>> a PG that belongs to the busiest OSD (i.e. the OSD for which there are 
>> more PGs waiting for a local reservation than any other)
> 
> I'm worried the reservation count won't be an accurate enough proxy for 
> the amount of work the remote OSD has to do.  

Are you thinking about taking into account the number and size of objects in a given PGs ? The length of the local reservation queue accurately reflects the number of PGs that need work (because the length of the reservation queue is not bounded). But it does not reflect the content of the PGs at all, indeed.

It would be very easy to 
> piggyback some load information on the heartbeat messages which we should 
> already be exchanging with anyone we would backfill with.
> 
> If we go down that path, there are a bunch of patches in the wip-read-hole 
> series that lay useful groundwork.  Getting that branch into shape 
> is the next big item after I finish the current batch of pull 
> requests.

Would you mind telling me which of https://github.com/ceph/ceph/commits/wip-read-hole commits are relevant ? I assume https://github.com/ceph/ceph/commit/ee72f699e236371a5b8651cd900013a2bd2227fb is to some extent. 

Cheers

>>   * when sending a remote reservation request, set the priority to 
>> reflect the total number of pending PG (absolute workload) and the 
>> number local pending PG for the destination OSD (workload queued locally 
>> for the remote OSD)
>>   * on the receiving side, the priority of the remote reservation 
>> request makes sure the busiest OSD gets a remote reservation before the 
>> others
>>
>> * reducing latency:
>>   
>>   * if there are N pending remote reservations, reject a remote 
>> reservation request instead of queuing it so that the local reservation 
>> can be used instead of waiting.
>>
>> Cheers
>>
>> -- 
>> Lo?c Dachary, Artisan Logiciel Libre
>>
>>
> 

-- 
Loïc Dachary, Artisan Logiciel Libre


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Improving latency and ordering of the backfilling workload
  2014-12-15 17:09   ` Loic Dachary
@ 2014-12-15 17:20     ` Sage Weil
  2014-12-15 17:48       ` Loic Dachary
  0 siblings, 1 reply; 9+ messages in thread
From: Sage Weil @ 2014-12-15 17:20 UTC (permalink / raw)
  To: Loic Dachary; +Cc: Ceph Development

On Mon, 15 Dec 2014, Loic Dachary wrote:
> Hi Sage,
> 
> On 15/12/2014 17:44, Sage Weil wrote:
> > On Mon, 15 Dec 2014, Loic Dachary wrote:
> >> Hi Sam,
> >>
> >> Here is what could be done (in the context of http://tracker.ceph.com/issues/9566
> >> ), please let me know if that makes sense:
> >>
> >> * ordering:
> >>
> >>   * when dequeuing a pending local reservation, chose one that contains 
> >> a PG that belongs to the busiest OSD (i.e. the OSD for which there are 
> >> more PGs waiting for a local reservation than any other)
> > 
> > I'm worried the reservation count won't be an accurate enough proxy for 
> > the amount of work the remote OSD has to do.  
> 
> Are you thinking about taking into account the number and size of 
> objects in a given PGs ? The length of the local reservation queue 
> accurately reflects the number of PGs that need work (because the length 
> of the reservation queue is not bounded). But it does not reflect the 
> content of the PGs at all, indeed.

Including that information could help, yeah, but the main thing is that 
any estimate of "the busiest OSD" based on local information is going to 
be weak if it's only based on info reservation requests.  Unless that 
information is refreshed periodically by the requesting OSD (I think we 
also discussed that a bit last week).

> It would be very easy to 
> > piggyback some load information on the heartbeat messages which we should 
> > already be exchanging with anyone we would backfill with.
> > 
> > If we go down that path, there are a bunch of patches in the wip-read-hole 
> > series that lay useful groundwork.  Getting that branch into shape 
> > is the next big item after I finish the current batch of pull 
> > requests.
> 
> Would you mind telling me which of 
> https://github.com/ceph/ceph/commits/wip-read-hole commits are relevant 
> ? I assume 
> https://github.com/ceph/ceph/commit/ee72f699e236371a5b8651cd900013a2bd2227fb 
> is to some extent.

Yeah that's the one.  There's a later patch that give each PG a handy 
reference to that struct for the acting set (for quick access), though in 
this case not all backfill peers will be in acting.

Note that there is also a osd_peer_stat_t struct in MOSDPing that is 
currently unused cruft.  We could replace/supplement that with whatever 
information we thing would be helpful.

If we go down that path at least.. I think ahve reservers refresh their 
reservation periodically with updated priorities would also work.

sage


> 
> Cheers
> 
> >>   * when sending a remote reservation request, set the priority to 
> >> reflect the total number of pending PG (absolute workload) and the 
> >> number local pending PG for the destination OSD (workload queued locally 
> >> for the remote OSD)
> >>   * on the receiving side, the priority of the remote reservation 
> >> request makes sure the busiest OSD gets a remote reservation before the 
> >> others
> >>
> >> * reducing latency:
> >>   
> >>   * if there are N pending remote reservations, reject a remote 
> >> reservation request instead of queuing it so that the local reservation 
> >> can be used instead of waiting.
> >>
> >> Cheers
> >>
> >> -- 
> >> Lo?c Dachary, Artisan Logiciel Libre
> >>
> >>
> > 
> 
> -- 
> Lo?c Dachary, Artisan Logiciel Libre
> 
> 

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Improving latency and ordering of the backfilling workload
  2014-12-15 17:20     ` Sage Weil
@ 2014-12-15 17:48       ` Loic Dachary
  2014-12-15 18:03         ` Sage Weil
  0 siblings, 1 reply; 9+ messages in thread
From: Loic Dachary @ 2014-12-15 17:48 UTC (permalink / raw)
  To: Sage Weil; +Cc: Ceph Development

[-- Attachment #1: Type: text/plain, Size: 4648 bytes --]



On 15/12/2014 18:20, Sage Weil wrote:
> On Mon, 15 Dec 2014, Loic Dachary wrote:
>> Hi Sage,
>>
>> On 15/12/2014 17:44, Sage Weil wrote:
>>> On Mon, 15 Dec 2014, Loic Dachary wrote:
>>>> Hi Sam,
>>>>
>>>> Here is what could be done (in the context of http://tracker.ceph.com/issues/9566
>>>> ), please let me know if that makes sense:
>>>>
>>>> * ordering:
>>>>
>>>>   * when dequeuing a pending local reservation, chose one that contains 
>>>> a PG that belongs to the busiest OSD (i.e. the OSD for which there are 
>>>> more PGs waiting for a local reservation than any other)
>>>
>>> I'm worried the reservation count won't be an accurate enough proxy for 
>>> the amount of work the remote OSD has to do.  
>>
>> Are you thinking about taking into account the number and size of 
>> objects in a given PGs ? The length of the local reservation queue 
>> accurately reflects the number of PGs that need work (because the length 
>> of the reservation queue is not bounded). But it does not reflect the 
>> content of the PGs at all, indeed.
> 
> Including that information could help, yeah, but the main thing is that 
> any estimate of "the busiest OSD" based on local information is going to 
> be weak if it's only based on info reservation requests.  

What other information would be relevant in addition to the number of PGs that need to backfill and their size (objects & bytes) ?

> Unless that 
> information is refreshed periodically by the requesting OSD (I think we 
> also discussed that a bit last week).

I tried to take that into account by proposing to calculate the priority when the reservation is dequeued from the waiting list instead of when it is added to the waiting list. When the local reservation is dequeued, it gets one of the osd_max_backfill slots in the AsyncReserver and will then get work to do : the delay between calculating the priority and actual backfilling is minimum. The delay actually is the latency between when the remote reservation is sent and when it comes back successfully. By adding the priority to the remote reservation request, we make the peer OSD aware of the local priority and compare it with the priority of the other OSDs asking for a remote reservation. The peer OSD will be grant us a remote reservation quickly if we are the OSD declaring to have most work to do.

I sense you have something else in mind in terms of algorithm and/or data sources. Hopefully this explanation will allow you to see what I'm missing and guide me ;-)

> 
>> It would be very easy to 
>>> piggyback some load information on the heartbeat messages which we should 
>>> already be exchanging with anyone we would backfill with.
>>>
>>> If we go down that path, there are a bunch of patches in the wip-read-hole 
>>> series that lay useful groundwork.  Getting that branch into shape 
>>> is the next big item after I finish the current batch of pull 
>>> requests.
>>
>> Would you mind telling me which of 
>> https://github.com/ceph/ceph/commits/wip-read-hole commits are relevant 
>> ? I assume 
>> https://github.com/ceph/ceph/commit/ee72f699e236371a5b8651cd900013a2bd2227fb 
>> is to some extent.
> 
> Yeah that's the one.  There's a later patch that give each PG a handy 
> reference to that struct for the acting set (for quick access), though in 
> this case not all backfill peers will be in acting.
> 
> Note that there is also a osd_peer_stat_t struct in MOSDPing that is 
> currently unused cruft.  We could replace/supplement that with whatever 
> information we thing would be helpful.
> 
> If we go down that path at least.. I think ahve reservers refresh their 
> reservation periodically with updated priorities would also work.
> 
> sage
> 
> 
>>
>> Cheers
>>
>>>>   * when sending a remote reservation request, set the priority to 
>>>> reflect the total number of pending PG (absolute workload) and the 
>>>> number local pending PG for the destination OSD (workload queued locally 
>>>> for the remote OSD)
>>>>   * on the receiving side, the priority of the remote reservation 
>>>> request makes sure the busiest OSD gets a remote reservation before the 
>>>> others
>>>>
>>>> * reducing latency:
>>>>   
>>>>   * if there are N pending remote reservations, reject a remote 
>>>> reservation request instead of queuing it so that the local reservation 
>>>> can be used instead of waiting.
>>>>
>>>> Cheers
>>>>
>>>> -- 
>>>> Lo?c Dachary, Artisan Logiciel Libre
>>>>
>>>>
>>>
>>
>> -- 
>> Lo?c Dachary, Artisan Logiciel Libre
>>
>>

-- 
Loïc Dachary, Artisan Logiciel Libre


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Improving latency and ordering of the backfilling workload
  2014-12-15 17:48       ` Loic Dachary
@ 2014-12-15 18:03         ` Sage Weil
  2014-12-15 18:13           ` Loic Dachary
  0 siblings, 1 reply; 9+ messages in thread
From: Sage Weil @ 2014-12-15 18:03 UTC (permalink / raw)
  To: Loic Dachary; +Cc: Ceph Development

On Mon, 15 Dec 2014, Loic Dachary wrote:
> On 15/12/2014 18:20, Sage Weil wrote:
> > On Mon, 15 Dec 2014, Loic Dachary wrote:
> >> Hi Sage,
> >>
> >> On 15/12/2014 17:44, Sage Weil wrote:
> >>> On Mon, 15 Dec 2014, Loic Dachary wrote:
> >>>> Hi Sam,
> >>>>
> >>>> Here is what could be done (in the context of http://tracker.ceph.com/issues/9566
> >>>> ), please let me know if that makes sense:
> >>>>
> >>>> * ordering:
> >>>>
> >>>>   * when dequeuing a pending local reservation, chose one that contains 
> >>>> a PG that belongs to the busiest OSD (i.e. the OSD for which there are 
> >>>> more PGs waiting for a local reservation than any other)
> >>>
> >>> I'm worried the reservation count won't be an accurate enough proxy for 
> >>> the amount of work the remote OSD has to do.  
> >>
> >> Are you thinking about taking into account the number and size of 
> >> objects in a given PGs ? The length of the local reservation queue 
> >> accurately reflects the number of PGs that need work (because the length 
> >> of the reservation queue is not bounded). But it does not reflect the 
> >> content of the PGs at all, indeed.
> > 
> > Including that information could help, yeah, but the main thing is that 
> > any estimate of "the busiest OSD" based on local information is going to 
> > be weak if it's only based on info reservation requests.  
> 
> What other information would be relevant in addition to the number of 
> PGs that need to backfill and their size (objects & bytes) ?

Maybe the background client workload?  If an OSD is more heavily loaded 
than others than it should probably start it's recovery sooner as its rate 
of progress will be a bit lower.

> > Unless that 
> > information is refreshed periodically by the requesting OSD (I think we 
> > also discussed that a bit last week).
> 
> I tried to take that into account by proposing to calculate the priority 
> when the reservation is dequeued from the waiting list instead of when 
> it is added to the waiting list. When the local reservation is dequeued, 
> it gets one of the osd_max_backfill slots in the AsyncReserver and will 
> then get work to do : the delay between calculating the priority and 
> actual backfilling is minimum. The delay actually is the latency between 
> when the remote reservation is sent and when it comes back successfully. 
> By adding the priority to the remote reservation request, we make the 
> peer OSD aware of the local priority and compare it with the priority of 
> the other OSDs asking for a remote reservation. The peer OSD will be 
> grant us a remote reservation quickly if we are the OSD declaring to 
> have most work to do.
> 
> I sense you have something else in mind in terms of algorithm and/or 
> data sources. Hopefully this explanation will allow you to see what I'm 
> missing and guide me ;-)

Oh, I see.  That sounds very reasonable.  I suspect even with this 
approach though it will help to periodically refresh that reservation, 
though, as the remote OSD may have lots of people contending for recovery.  
Whoever is not first in line will be there for a while and their priority 
will likely be less than accurate by the time the next item is dequeued 
there?

Sorry if my drive-by suggestions aren't helping; I'm only half following 
this discussion!

sage

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Improving latency and ordering of the backfilling workload
  2014-12-15 18:03         ` Sage Weil
@ 2014-12-15 18:13           ` Loic Dachary
  2014-12-18  0:54             ` Samuel Just
  0 siblings, 1 reply; 9+ messages in thread
From: Loic Dachary @ 2014-12-15 18:13 UTC (permalink / raw)
  To: Sage Weil; +Cc: Ceph Development

[-- Attachment #1: Type: text/plain, Size: 4090 bytes --]



On 15/12/2014 19:03, Sage Weil wrote:
> On Mon, 15 Dec 2014, Loic Dachary wrote:
>> On 15/12/2014 18:20, Sage Weil wrote:
>>> On Mon, 15 Dec 2014, Loic Dachary wrote:
>>>> Hi Sage,
>>>>
>>>> On 15/12/2014 17:44, Sage Weil wrote:
>>>>> On Mon, 15 Dec 2014, Loic Dachary wrote:
>>>>>> Hi Sam,
>>>>>>
>>>>>> Here is what could be done (in the context of http://tracker.ceph.com/issues/9566
>>>>>> ), please let me know if that makes sense:
>>>>>>
>>>>>> * ordering:
>>>>>>
>>>>>>   * when dequeuing a pending local reservation, chose one that contains 
>>>>>> a PG that belongs to the busiest OSD (i.e. the OSD for which there are 
>>>>>> more PGs waiting for a local reservation than any other)
>>>>>
>>>>> I'm worried the reservation count won't be an accurate enough proxy for 
>>>>> the amount of work the remote OSD has to do.  
>>>>
>>>> Are you thinking about taking into account the number and size of 
>>>> objects in a given PGs ? The length of the local reservation queue 
>>>> accurately reflects the number of PGs that need work (because the length 
>>>> of the reservation queue is not bounded). But it does not reflect the 
>>>> content of the PGs at all, indeed.
>>>
>>> Including that information could help, yeah, but the main thing is that 
>>> any estimate of "the busiest OSD" based on local information is going to 
>>> be weak if it's only based on info reservation requests.  
>>
>> What other information would be relevant in addition to the number of 
>> PGs that need to backfill and their size (objects & bytes) ?
> 
> Maybe the background client workload?  If an OSD is more heavily loaded 
> than others than it should probably start it's recovery sooner as its rate 
> of progress will be a bit lower.
> 
>>> Unless that 
>>> information is refreshed periodically by the requesting OSD (I think we 
>>> also discussed that a bit last week).
>>
>> I tried to take that into account by proposing to calculate the priority 
>> when the reservation is dequeued from the waiting list instead of when 
>> it is added to the waiting list. When the local reservation is dequeued, 
>> it gets one of the osd_max_backfill slots in the AsyncReserver and will 
>> then get work to do : the delay between calculating the priority and 
>> actual backfilling is minimum. The delay actually is the latency between 
>> when the remote reservation is sent and when it comes back successfully. 
>> By adding the priority to the remote reservation request, we make the 
>> peer OSD aware of the local priority and compare it with the priority of 
>> the other OSDs asking for a remote reservation. The peer OSD will be 
>> grant us a remote reservation quickly if we are the OSD declaring to 
>> have most work to do.
>>
>> I sense you have something else in mind in terms of algorithm and/or 
>> data sources. Hopefully this explanation will allow you to see what I'm 
>> missing and guide me ;-)
> 
> Oh, I see.  That sounds very reasonable.  I suspect even with this 
> approach though it will help to periodically refresh that reservation, 
> though, as the remote OSD may have lots of people contending for recovery.  
> Whoever is not first in line will be there for a while and their priority 
> will likely be less than accurate by the time the next item is dequeued 
> there?

The priority is attached to each reservation and is relative to one PG reservation request. The remote reservation priority will be reconsidered each time a new PG asks for a remote reservation (because it will use the priority queues of the AsyncReserver). If we want to revise the priority during the backfilling of a given PG that already has a local+remote slot allocated to it, it means we should periodically consider cancelling an on going backfill operation to give a chance to an other, maybe busier, OSD. 

Am I following ?

> 
> Sorry if my drive-by suggestions aren't helping; I'm only half following 
> this discussion!

It's helping a lot !

> sage
> 

-- 
Loïc Dachary, Artisan Logiciel Libre


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Improving latency and ordering of the backfilling workload
  2014-12-15 18:13           ` Loic Dachary
@ 2014-12-18  0:54             ` Samuel Just
  0 siblings, 0 replies; 9+ messages in thread
From: Samuel Just @ 2014-12-18  0:54 UTC (permalink / raw)
  To: Loic Dachary; +Cc: Sage Weil, Ceph Development

I think the concern is that the priority information might be obsolete
by the time it gets the remote reservation.  We might need to refresh
the reservation periodically if, for example, the number of pgs
requiring backfill on a particular osd is increasing.
-Sam

On Mon, Dec 15, 2014 at 10:13 AM, Loic Dachary <loic@dachary.org> wrote:
>
>
> On 15/12/2014 19:03, Sage Weil wrote:
>> On Mon, 15 Dec 2014, Loic Dachary wrote:
>>> On 15/12/2014 18:20, Sage Weil wrote:
>>>> On Mon, 15 Dec 2014, Loic Dachary wrote:
>>>>> Hi Sage,
>>>>>
>>>>> On 15/12/2014 17:44, Sage Weil wrote:
>>>>>> On Mon, 15 Dec 2014, Loic Dachary wrote:
>>>>>>> Hi Sam,
>>>>>>>
>>>>>>> Here is what could be done (in the context of http://tracker.ceph.com/issues/9566
>>>>>>> ), please let me know if that makes sense:
>>>>>>>
>>>>>>> * ordering:
>>>>>>>
>>>>>>>   * when dequeuing a pending local reservation, chose one that contains
>>>>>>> a PG that belongs to the busiest OSD (i.e. the OSD for which there are
>>>>>>> more PGs waiting for a local reservation than any other)
>>>>>>
>>>>>> I'm worried the reservation count won't be an accurate enough proxy for
>>>>>> the amount of work the remote OSD has to do.
>>>>>
>>>>> Are you thinking about taking into account the number and size of
>>>>> objects in a given PGs ? The length of the local reservation queue
>>>>> accurately reflects the number of PGs that need work (because the length
>>>>> of the reservation queue is not bounded). But it does not reflect the
>>>>> content of the PGs at all, indeed.
>>>>
>>>> Including that information could help, yeah, but the main thing is that
>>>> any estimate of "the busiest OSD" based on local information is going to
>>>> be weak if it's only based on info reservation requests.
>>>
>>> What other information would be relevant in addition to the number of
>>> PGs that need to backfill and their size (objects & bytes) ?
>>
>> Maybe the background client workload?  If an OSD is more heavily loaded
>> than others than it should probably start it's recovery sooner as its rate
>> of progress will be a bit lower.
>>
>>>> Unless that
>>>> information is refreshed periodically by the requesting OSD (I think we
>>>> also discussed that a bit last week).
>>>
>>> I tried to take that into account by proposing to calculate the priority
>>> when the reservation is dequeued from the waiting list instead of when
>>> it is added to the waiting list. When the local reservation is dequeued,
>>> it gets one of the osd_max_backfill slots in the AsyncReserver and will
>>> then get work to do : the delay between calculating the priority and
>>> actual backfilling is minimum. The delay actually is the latency between
>>> when the remote reservation is sent and when it comes back successfully.
>>> By adding the priority to the remote reservation request, we make the
>>> peer OSD aware of the local priority and compare it with the priority of
>>> the other OSDs asking for a remote reservation. The peer OSD will be
>>> grant us a remote reservation quickly if we are the OSD declaring to
>>> have most work to do.
>>>
>>> I sense you have something else in mind in terms of algorithm and/or
>>> data sources. Hopefully this explanation will allow you to see what I'm
>>> missing and guide me ;-)
>>
>> Oh, I see.  That sounds very reasonable.  I suspect even with this
>> approach though it will help to periodically refresh that reservation,
>> though, as the remote OSD may have lots of people contending for recovery.
>> Whoever is not first in line will be there for a while and their priority
>> will likely be less than accurate by the time the next item is dequeued
>> there?
>
> The priority is attached to each reservation and is relative to one PG reservation request. The remote reservation priority will be reconsidered each time a new PG asks for a remote reservation (because it will use the priority queues of the AsyncReserver). If we want to revise the priority during the backfilling of a given PG that already has a local+remote slot allocated to it, it means we should periodically consider cancelling an on going backfill operation to give a chance to an other, maybe busier, OSD.
>
> Am I following ?
>
>>
>> Sorry if my drive-by suggestions aren't helping; I'm only half following
>> this discussion!
>
> It's helping a lot !
>
>> sage
>>
>
> --
> Loïc Dachary, Artisan Logiciel Libre
>
--
To unsubscribe from this list: send the line "unsubscribe ceph-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2014-12-18  0:54 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-15 14:24 Improving latency and ordering of the backfilling workload Loic Dachary
2014-12-15 16:44 ` Sage Weil
2014-12-15 17:01   ` Pavan Rallabhandi
2014-12-15 17:09   ` Loic Dachary
2014-12-15 17:20     ` Sage Weil
2014-12-15 17:48       ` Loic Dachary
2014-12-15 18:03         ` Sage Weil
2014-12-15 18:13           ` Loic Dachary
2014-12-18  0:54             ` Samuel Just

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.