Diff for "Soyuz/JobDispatchTimeEstimation"

Not logged in - Log In / Register

Differences between revisions 2 and 3
Revision 2 as of 2010-03-12 09:25:09
Size: 1409
Editor: al-maisan
Comment:
Revision 3 as of 2010-03-12 10:29:41
Size: 1918
Editor: al-maisan
Comment:
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:
Please note that job dispatch times are ''estimated''. Alas, we have not mastered the art of writing psychic software yet. Please note that job dispatch times are ''estimated''. Alas, we have not mastered the art of writing psychic software yet :-)
Line 11: Line 11:
Build farm jobs can either target a specific platform (e.g. binary builds) or be platform-independent (e.g. "generate a source package from a recipe" builds).

The former can only make use of build machines (or "builders" in Soyuz parlance) of the given platform while platform-independent jobs may run on any available builder.
Build farm jobs can either target a specific platform (e.g. binary builds) or be platform-independent (e.g. "generate a source package from a recipe" builds).  The former can only make use of build machines (or "builders" in Soyuz parlance) of the given platform while platform-independent jobs may run on any available builder.
Line 21: Line 19:
=== Problem definition ===
Line 27: Line 27:

=== Solution overview ===

There are two questions we need to answer in order to come up with a dispatch time ''estimation'':
 1. how long will the jobs ahead of the JOI (in the pending queue) take to run. This is the ''preliminary lead time'' (PLT).
 1. how long will it take until the job at the head of the pending queue is dispatched to a builder (D2)? This is the ''time to next builder'' (TNB).

The dispatch time estimation for the JOI is then: now + PLT + TNB.

Dispatch time estimation for build farm jobs

Introduction

Please note that job dispatch times are estimated. Alas, we have not mastered the art of writing psychic software yet :-)

For the purpose of this description a 'platform' is considered to be the combination of a

  • processor (e.g. i386 or amd64) and a
  • virtualization setting (one of: true, false or null)

Build farm jobs can either target a specific platform (e.g. binary builds) or be platform-independent (e.g. "generate a source package from a recipe" builds). The former can only make use of build machines (or "builders" in Soyuz parlance) of the given platform while platform-independent jobs may run on any available builder.

Jobs with an unspecified virtualization setting will be dispatched to virtual builders only.

Builders can -- roughly speaking -- either be idle or building. For any job running on a particular builder its estimated duration and its start time is available allowing us to estimate the job's remaining execution time.

By the way, did I already mention that job dispatch times are an estimation only?

Problem definition

Given:

  • a queue of pending (i.e. ready to build) build farm jobs sorted in descending order according to their score
  • a pool of builders

Wanted: the estimated dispatch time for a specific job in the pending queue i.e. for the job of interest (aka JOI).

Solution overview

There are two questions we need to answer in order to come up with a dispatch time estimation:

  1. how long will the jobs ahead of the JOI (in the pending queue) take to run. This is the preliminary lead time (PLT).

  2. how long will it take until the job at the head of the pending queue is dispatched to a builder (D2)? This is the time to next builder (TNB).

The dispatch time estimation for the JOI is then: now + PLT + TNB.

Soyuz/JobDispatchTimeEstimation (last edited 2010-03-14 11:58:03 by al-maisan)