Semaphores and other tools to sequence Job execution

eHive has three main ways to control the order in which Analyses are executed (more precisely, the order in which Jobs for Analyses are executed). The first is the seeding mechanism that we have already seen. Simply, while a Job runs, it creates events, and these events can be wired to create more Jobs:

{   -logic_name => 'Alpha',
    -flow_into  => {
       1 => [ 'Beta' ],
    },
},
{   -logic_name => 'Beta',
},
digraph test {
	ratio="compress"; concentrate = "true"; name = "AnalysisWorkflow"; pad = "0";
	analysis_Alpha [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Alpha</td></tr></table>>, shape="Mrecord", style="filled"];
	analysis_Beta [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Beta</td></tr></table>>, shape="Mrecord", style="filled"];
	analysis_Alpha -> analysis_Beta [color="blue", fontcolor="blue", fontname="Helvetica", label="#1\n"];

subgraph "cluster_tmpl5m9wtpx" {
	label="";
	style="filled";
	colorscheme="blues9";
	fillcolor="1";
	color="1";
	analysis_Alpha;
	analysis_Beta;
}
}

This is often sufficient for simple workflows, but lacks the power and flexibility to handle more complex situations - such as processing the output of several independent Jobs running in parallel. To provide this power and flexibility, eHive implements a “Semaphore” system (sometimes called “factory, fan, and funnel” or “box and funnel”). Additionally, a “wait-for” directive is available to be part of an Analysis definition. This stops all Jobs for that Analysis from running while some other Analysis has incomplete Jobs. “Wait-for” is an older feature of eHive and is not generally recommended, but it may still be seen in older workflows, or may be applicable in some rare situations.

Semaphores

A Semaphore blocks one or more Jobs from starting until all of the Jobs in a defined set are [DONE] (or [PASSED_ON]). Semaphores exist in the context of a Semaphore Group, which has three fundamental components:

  • A blocked Job (or Jobs) waiting for the Semaphore to be released. In eHive terminology, this called the “funnel” or “funnel Job(s)”.

  • A group of Jobs the Semaphored (funnel) Job(s) waits for. In eHive terminology, this group is called the “fan” (or sometimes also called the “box,” because eHive’s graphical display tools identify the fan by drawing a shaded box around the appropriate Analyses or Jobs).

  • A single Job that seeds the funnel and fan Jobs during its execution. In eHive terminology, this is called the “factory”.

{   -logic_name => 'Factory',
    -flow_into  => {
       '2->A' => [ 'Fan' ],
       'A->1' => [ 'Funnel' ],
    },
},
{   -logic_name => 'Fan',
},
{   -logic_name => 'Funnel',
},
digraph test {
	ratio="compress"; concentrate = "true"; name = "AnalysisWorkflow"; pad = "0";
	analysis_Factory [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Factory</td></tr></table>>, shape="Mrecord", style="filled"];
	analysis_Fan [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Fan</td></tr></table>>, shape="Mrecord", style="filled"];
	analysis_Funnel [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Funnel</td></tr></table>>, shape="Mrecord", style="filled"];
	dfr_p1_mp [fixedsize="1", height="0.01", label="dfr_p1_mp", shape="point", width="0.01"];
	dfr_p2_mp [fixedsize="1", height="0.01", label="dfr_p2_mp", shape="point", width="0.01"];
	analysis_Factory -> dfr_p1_mp [arrowhead="none", color="black", fontcolor="black", fontname="Helvetica", headport="n", label="#1"];
	analysis_Factory -> dfr_p2_mp [arrowhead="none", color="black", fontcolor="black", fontname="Helvetica", headport="n", label="#2"];
	dfr_p1_mp -> analysis_Funnel [color="blue", fontcolor="blue", fontname="Helvetica", label="\n", tailport="s"];
	dfr_p2_mp -> analysis_Fan [color="blue", fontcolor="blue", fontname="Helvetica", label="\n", tailport="s"];
	dfr_p2_mp -> dfr_p1_mp [arrowhead="tee", arrowtail="crow", color="red", dir="both", style="dashed"];

subgraph "cluster_tmpl5m9wtpx" {
	label="";
	style="filled";
	colorscheme="blues9";
	fillcolor="1";
	color="1";
	analysis_Factory;
	analysis_Funnel;
	subgraph "cluster_cl_dfr_p1_mp" {
		label="";
		style="filled";
		colorscheme="blues9";
		fillcolor="2";
		color="2";
		analysis_Fan;
	}
	dfr_p1_mp;
	dfr_p2_mp;
}
}

Creating a fan-funnel relationship is a matter of wiring dataflow events from the factory Analysis in that Analysis’ flow-into block. To indicate that Jobs being seeded should be part of a fan that controls a semaphore, a single-letter “group identifier” is appended to the dataflow branch number with an arrow. This is the '2->A' in the example above. Likewise, to wire a funnel Analysis to a dataflow branch, the dataflow branch is prepended by a group identifier. For example 'A->1'. Note that group identifier letters are arbitrary, and have nothing to do with the logic names of the Analyses in the group. Also be aware that group identifiers are unique only in the scope of a single factory Analysis. For example, if a pipeline has a factory Factory_alpha which seeds a fan using group identifier “A”, this group will be completely independent from a different factory Factory_beta which also seeds a fan using group identifier “A”.

Writing it out in sentences: 2->A means that all the dataflow events on branch #2 will be grouped together in a group named “A”. A->1 means that the funnel Job resulting from the dataflow event on branch #1 has to wait for all the Jobs in group A before it can start.

Multiple Analyses in the same fan

A factory can seed multiple Jobs of different Analysis types into the same fan, by using events with the same or different dataflow branch numbers:

{   -logic_name => 'Factory',
    -flow_into  => {
       '2->A' => [ 'Fan_alpha', 'Fan_beta' ],
       '3->A' => [ 'Fan_delta'  ],
       'A->1' => [ 'Funnel' ],
    },
},
{   -logic_name => 'Fan_alpha',
},
{   -logic_name => 'Fan_beta',
},
{   -logic_name => 'Fan_delta',
},
{   -logic_name => 'Funnel',
},
digraph test {
	ratio="compress"; concentrate = "true"; name = "AnalysisWorkflow"; pad = "0";
	analysis_Factory [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Factory</td></tr></table>>, shape="Mrecord", style="filled"];
	analysis_Fan_alpha [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Fan_alpha</td></tr></table>>, shape="Mrecord", style="filled"];
	analysis_Fan_beta [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Fan_beta</td></tr></table>>, shape="Mrecord", style="filled"];
	analysis_Fan_delta [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Fan_delta</td></tr></table>>, shape="Mrecord", style="filled"];
	analysis_Funnel [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Funnel</td></tr></table>>, shape="Mrecord", style="filled"];
	dfr_p1_mp [fixedsize="1", height="0.01", label="dfr_p1_mp", shape="point", width="0.01"];
	dfr_p2_mp [fixedsize="1", height="0.01", label="dfr_p2_mp", shape="point", width="0.01"];
	dfr_p3_mp [fixedsize="1", height="0.01", label="dfr_p3_mp", shape="point", width="0.01"];
	dfr_p4_mp [fixedsize="1", height="0.01", label="dfr_p4_mp", shape="point", width="0.01"];
	analysis_Factory -> dfr_p1_mp [arrowhead="none", color="black", fontcolor="black", fontname="Helvetica", headport="n", label="#1"];
	analysis_Factory -> dfr_p2_mp [arrowhead="none", color="black", fontcolor="black", fontname="Helvetica", headport="n", label="#2"];
	analysis_Factory -> dfr_p3_mp [arrowhead="none", color="black", fontcolor="black", fontname="Helvetica", headport="n", label="#2"];
	analysis_Factory -> dfr_p4_mp [arrowhead="none", color="black", fontcolor="black", fontname="Helvetica", headport="n", label="#3"];
	dfr_p1_mp -> analysis_Funnel [color="blue", fontcolor="blue", fontname="Helvetica", label="\n", tailport="s"];
	dfr_p2_mp -> analysis_Fan_alpha [color="blue", fontcolor="blue", fontname="Helvetica", label="\n", tailport="s"];
	dfr_p2_mp -> dfr_p1_mp [arrowhead="tee", arrowtail="crow", color="red", dir="both", style="dashed"];
	dfr_p3_mp -> analysis_Fan_beta [color="blue", fontcolor="blue", fontname="Helvetica", label="\n", tailport="s"];
	dfr_p3_mp -> dfr_p1_mp [arrowhead="tee", arrowtail="crow", color="red", dir="both", style="dashed"];
	dfr_p4_mp -> analysis_Fan_delta [color="blue", fontcolor="blue", fontname="Helvetica", label="\n", tailport="s"];
	dfr_p4_mp -> dfr_p1_mp [arrowhead="tee", arrowtail="crow", color="red", dir="both", style="dashed"];

subgraph "cluster_tmpl5m9wtpx" {
	label="";
	style="filled";
	colorscheme="blues9";
	fillcolor="1";
	color="1";
	analysis_Factory;
	analysis_Funnel;
	subgraph "cluster_cl_dfr_p1_mp" {
		label="";
		style="filled";
		colorscheme="blues9";
		fillcolor="2";
		color="2";
		analysis_Fan_alpha;
		analysis_Fan_beta;
		analysis_Fan_delta;
	}
	dfr_p1_mp;
	dfr_p2_mp;
	dfr_p3_mp;
	dfr_p4_mp;
}
}

In the above diagram, the Funnel Job seeded by the dataflow event on branch #1 will have to wait until all Fan_alpha, Fan_beta, and Fan_delta Jobs are finished.

Multiple fan-funnel groups from the same factory

The same factory can also be wired to create Jobs in multiple fan groups, by giving each group a distinct identifier:

{   -logic_name => 'Factory',
    -flow_into  => {
       '2->A' => [ 'Alpha_fan' ],
       '2->B' => [ 'Beta_fan'  ],
       'A->1' => [ 'Alpha_funnel' ],
       'B->1' => [ 'Beta_funnel' ],
    },
},
{   -logic_name => 'Alpha_fan',
},
{   -logic_name => 'Beta_fan',
},
{   -logic_name => 'Alpha_funnel',
},
{   -logic_name => 'Beta_funnel',
},
digraph test {
	ratio="compress"; concentrate = "true"; name = "AnalysisWorkflow"; pad = "0";
	analysis_Alpha_fan [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Alpha_fan</td></tr></table>>, shape="Mrecord", style="filled"];
	analysis_Alpha_funnel [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Alpha_funnel</td></tr></table>>, shape="Mrecord", style="filled"];
	analysis_Beta_fan [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Beta_fan</td></tr></table>>, shape="Mrecord", style="filled"];
	analysis_Beta_funnel [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Beta_funnel</td></tr></table>>, shape="Mrecord", style="filled"];
	analysis_Factory [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Factory</td></tr></table>>, shape="Mrecord", style="filled"];
	dfr_p1_mp [fixedsize="1", height="0.01", label="dfr_p1_mp", shape="point", width="0.01"];
	dfr_p2_mp [fixedsize="1", height="0.01", label="dfr_p2_mp", shape="point", width="0.01"];
	dfr_p3_mp [fixedsize="1", height="0.01", label="dfr_p3_mp", shape="point", width="0.01"];
	dfr_p4_mp [fixedsize="1", height="0.01", label="dfr_p4_mp", shape="point", width="0.01"];
	analysis_Factory -> dfr_p1_mp [arrowhead="none", color="black", fontcolor="black", fontname="Helvetica", headport="n", label="#1"];
	analysis_Factory -> dfr_p2_mp [arrowhead="none", color="black", fontcolor="black", fontname="Helvetica", headport="n", label="#2"];
	analysis_Factory -> dfr_p3_mp [arrowhead="none", color="black", fontcolor="black", fontname="Helvetica", headport="n", label="#1"];
	analysis_Factory -> dfr_p4_mp [arrowhead="none", color="black", fontcolor="black", fontname="Helvetica", headport="n", label="#2"];
	dfr_p1_mp -> analysis_Alpha_funnel [color="blue", fontcolor="blue", fontname="Helvetica", label="\n", tailport="s"];
	dfr_p2_mp -> analysis_Alpha_fan [color="blue", fontcolor="blue", fontname="Helvetica", label="\n", tailport="s"];
	dfr_p2_mp -> dfr_p1_mp [arrowhead="tee", arrowtail="crow", color="red", dir="both", style="dashed"];
	dfr_p3_mp -> analysis_Beta_funnel [color="blue", fontcolor="blue", fontname="Helvetica", label="\n", tailport="s"];
	dfr_p4_mp -> analysis_Beta_fan [color="blue", fontcolor="blue", fontname="Helvetica", label="\n", tailport="s"];
	dfr_p4_mp -> dfr_p3_mp [arrowhead="tee", arrowtail="crow", color="red", dir="both", style="dashed"];

subgraph "cluster_tmpl5m9wtpx" {
	label="";
	style="filled";
	colorscheme="blues9";
	fillcolor="1";
	color="1";
	analysis_Alpha_funnel;
	analysis_Beta_funnel;
	analysis_Factory;
	subgraph "cluster_cl_dfr_p1_mp" {
		label="";
		style="filled";
		colorscheme="blues9";
		fillcolor="2";
		color="2";
		analysis_Alpha_fan;
	}
	subgraph "cluster_cl_dfr_p3_mp" {
		label="";
		style="filled";
		colorscheme="blues9";
		fillcolor="2";
		color="2";
		analysis_Beta_fan;
	}
	dfr_p1_mp;
	dfr_p2_mp;
	dfr_p3_mp;
	dfr_p4_mp;
}
}

Sempahore propagation

Analyses in a fan can be wired so that their dataflow events generate Jobs of child Analyses. Jobs from these child Analyses will be part of the same fan group (and will block the semaphored/funnel Job from starting) just like Jobs from their parent Analyses:

{   -logic_name => 'Factory',
    -flow_into  => {
       '2->A'   => [ 'Fan' ],
       'A->1'   => [ 'Funnel' ],
    },
},
{   -logic_name => 'Fan',
    -flow_into  => {
       '1' => ['Fan_child'],
    },
},
{   -logic_name => 'Fan_child',
},
{   -logic_name => 'Funnel',
},
digraph test {
	ratio="compress"; concentrate = "true"; name = "AnalysisWorkflow"; pad = "0";
	analysis_Factory [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Factory</td></tr></table>>, shape="Mrecord", style="filled"];
	analysis_Fan [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Fan</td></tr></table>>, shape="Mrecord", style="filled"];
	analysis_Fan_child [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Fan_child</td></tr></table>>, shape="Mrecord", style="filled"];
	analysis_Funnel [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Funnel</td></tr></table>>, shape="Mrecord", style="filled"];
	dfr_p1_mp [fixedsize="1", height="0.01", label="dfr_p1_mp", shape="point", width="0.01"];
	dfr_p2_mp [fixedsize="1", height="0.01", label="dfr_p2_mp", shape="point", width="0.01"];
	analysis_Factory -> dfr_p1_mp [arrowhead="none", color="black", fontcolor="black", fontname="Helvetica", headport="n", label="#1"];
	analysis_Factory -> dfr_p2_mp [arrowhead="none", color="black", fontcolor="black", fontname="Helvetica", headport="n", label="#2"];
	analysis_Fan -> analysis_Fan_child [color="blue", fontcolor="blue", fontname="Helvetica", label="#1\n"];
	dfr_p1_mp -> analysis_Funnel [color="blue", fontcolor="blue", fontname="Helvetica", label="\n", tailport="s"];
	dfr_p2_mp -> analysis_Fan [color="blue", fontcolor="blue", fontname="Helvetica", label="\n", tailport="s"];
	dfr_p2_mp -> dfr_p1_mp [arrowhead="tee", arrowtail="crow", color="red", dir="both", style="dashed"];

subgraph "cluster_tmpl5m9wtpx" {
	label="";
	style="filled";
	colorscheme="blues9";
	fillcolor="1";
	color="1";
	analysis_Factory;
	analysis_Funnel;
	subgraph "cluster_cl_dfr_p1_mp" {
		label="";
		style="filled";
		colorscheme="blues9";
		fillcolor="2";
		color="2";
		analysis_Fan;
		analysis_Fan_child;
	}
	dfr_p1_mp;
	dfr_p2_mp;
}
}

Semaphore independent from the autoflow

A fan-funnel relationship is created the instant a funnel Job is seeded. At that point in time, the event seeding the funnel “closes off” the fan, and the Semaphore counter is initialised with the number of Jobs currently in the fan. After that moment, if the factory seeds more Jobs into a fan, these fan Jobs will constitute a new fan group, which will need to be closed off by a new funnel Job.

Therefore, it is possible for a factory Job to create several fan-funnel groups during its execution. All of these groups execute independently; the Semaphore controlling a particular funnel Job will release upon completion of its corresponding fan Jobs.

{   -logic_name => 'Factory',
    -flow_into  => {
       '3->A'   => [ 'Fan' ],
       'A->2'   => [ 'Funnel' ],
    },
},
{   -logic_name => 'Fan',
},
{   -logic_name => 'Funnel',
},
digraph test {
	ratio="compress"; concentrate = "true"; name = "AnalysisWorkflow"; pad = "0";
	analysis_Factory [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Factory</td></tr></table>>, shape="Mrecord", style="filled"];
	analysis_Fan [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Fan</td></tr></table>>, shape="Mrecord", style="filled"];
	analysis_Funnel [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Funnel</td></tr></table>>, shape="Mrecord", style="filled"];
	dfr_p1_mp [fixedsize="1", height="0.01", label="dfr_p1_mp", shape="point", width="0.01"];
	dfr_p2_mp [fixedsize="1", height="0.01", label="dfr_p2_mp", shape="point", width="0.01"];
	analysis_Factory -> dfr_p1_mp [arrowhead="none", color="black", fontcolor="black", fontname="Helvetica", headport="n", label="#2"];
	analysis_Factory -> dfr_p2_mp [arrowhead="none", color="black", fontcolor="black", fontname="Helvetica", headport="n", label="#3"];
	dfr_p1_mp -> analysis_Funnel [color="blue", fontcolor="blue", fontname="Helvetica", label="\n", tailport="s"];
	dfr_p2_mp -> analysis_Fan [color="blue", fontcolor="blue", fontname="Helvetica", label="\n", tailport="s"];
	dfr_p2_mp -> dfr_p1_mp [arrowhead="tee", arrowtail="crow", color="red", dir="both", style="dashed"];

subgraph "cluster_tmpl5m9wtpx" {
	label="";
	style="filled";
	colorscheme="blues9";
	fillcolor="1";
	color="1";
	analysis_Factory;
	analysis_Funnel;
	subgraph "cluster_cl_dfr_p1_mp" {
		label="";
		style="filled";
		colorscheme="blues9";
		fillcolor="2";
		color="2";
		analysis_Fan;
	}
	dfr_p1_mp;
	dfr_p2_mp;
}
}

This also means that, if there are several factory Jobs for the same factory Analysis, the Semaphore groups for those factories will all be independent. This is because each factory will be creating a separate funnel Job (or set of funnel Jobs).

Please see the Long-multiplication pipeline walkthrough for a detailed illustration of how individual funnel Jobs are independently controlled by different fan groups.

Mixing all patterns

Here, the Semaphore groups created on branches #2 (fan) and #3 (funnel) are automatically expanded with the Jobs created in the Analysis Delta.

Upon success of the Alpha Job, the autoflow will create a Job in Analysis Epsilon which is not controlled by any of the Beta or Gamma Jobs. It can thus start immediately.

{   -logic_name => 'Alpha',
    -flow_into  => {
       '3->A' => [ 'Beta' ],
       'A->2' => [ 'Gamma' ],
       1      => [ 'Epsilon' ],
    },
},
{   -logic_name => 'Beta',
    -flow_into  => {
       2 => [ 'Delta' ],
    },
},
{   -logic_name => 'Gamma',
},
{   -logic_name => 'Delta',
},
{   -logic_name => 'Epsilon',
},
digraph test {
	ratio="compress"; concentrate = "true"; name = "AnalysisWorkflow"; pad = "0";
	analysis_Alpha [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Alpha</td></tr></table>>, shape="Mrecord", style="filled"];
	analysis_Beta [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Beta</td></tr></table>>, shape="Mrecord", style="filled"];
	analysis_Delta [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Delta</td></tr></table>>, shape="Mrecord", style="filled"];
	analysis_Epsilon [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Epsilon</td></tr></table>>, shape="Mrecord", style="filled"];
	analysis_Gamma [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Gamma</td></tr></table>>, shape="Mrecord", style="filled"];
	dfr_p1_mp [fixedsize="1", height="0.01", label="dfr_p1_mp", shape="point", width="0.01"];
	dfr_p2_mp [fixedsize="1", height="0.01", label="dfr_p2_mp", shape="point", width="0.01"];
	analysis_Alpha -> analysis_Epsilon [color="blue", fontcolor="blue", fontname="Helvetica", label="#1\n"];
	analysis_Alpha -> dfr_p1_mp [arrowhead="none", color="black", fontcolor="black", fontname="Helvetica", headport="n", label="#2"];
	analysis_Alpha -> dfr_p2_mp [arrowhead="none", color="black", fontcolor="black", fontname="Helvetica", headport="n", label="#3"];
	analysis_Beta -> analysis_Delta [color="blue", fontcolor="blue", fontname="Helvetica", label="#2\n"];
	dfr_p1_mp -> analysis_Gamma [color="blue", fontcolor="blue", fontname="Helvetica", label="\n", tailport="s"];
	dfr_p2_mp -> analysis_Beta [color="blue", fontcolor="blue", fontname="Helvetica", label="\n", tailport="s"];
	dfr_p2_mp -> dfr_p1_mp [arrowhead="tee", arrowtail="crow", color="red", dir="both", style="dashed"];

subgraph "cluster_tmpl5m9wtpx" {
	label="";
	style="filled";
	colorscheme="blues9";
	fillcolor="1";
	color="1";
	analysis_Alpha;
	analysis_Epsilon;
	analysis_Gamma;
	subgraph "cluster_cl_dfr_p1_mp" {
		label="";
		style="filled";
		colorscheme="blues9";
		fillcolor="2";
		color="2";
		analysis_Beta;
		analysis_Delta;
	}
	dfr_p1_mp;
	dfr_p2_mp;
}
}

Wait-for

The wait-for directive stops Jobs from the specified Analysis from starting until all Jobs from the designated blocking Analysis have completed.

{   -logic_name => 'Seeding',
    -flow_into  => {
       '1' => [ 'Waiting' ],
       '2' => [ 'Blocking' ],
    },
},
{   -logic_name => 'Waiting',
    -wait_for   => 'Blocking',
},
{   -logic_name => 'Blocking',
},
digraph test {
	ratio="compress"; concentrate = "true"; name = "AnalysisWorkflow"; pad = "0";
	analysis_Blocking [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Blocking</td></tr></table>>, shape="Mrecord", style="filled"];
	analysis_Seeding [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Seeding</td></tr></table>>, shape="Mrecord", style="filled"];
	analysis_Waiting [fillcolor="grey", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Waiting</td></tr></table>>, shape="Mrecord", style="filled"];
	analysis_Blocking -> analysis_Waiting [arrowhead="tee", color="red"];
	analysis_Seeding -> analysis_Blocking [color="blue", fontcolor="blue", fontname="Helvetica", label="#2\n"];
	analysis_Seeding -> analysis_Waiting [color="blue", fontcolor="blue", fontname="Helvetica", label="#1\n"];

subgraph "cluster_tmpl5m9wtpx" {
	label="";
	style="filled";
	colorscheme="blues9";
	fillcolor="1";
	color="1";
	analysis_Blocking;
	analysis_Seeding;
	analysis_Waiting;
}
}

In the above example, the Waiting Job, after being seeded, will not run until all Blocking Jobs are [DONE] or [PASSED_ON].

Note that “blocking” and “waiting” Analyses do not have to share the same parent:

{   -logic_name => 'Alpha',
    -flow_into  => {
       '1' => [ 'Waiting' ],
       '2' => [ 'Beta' ],
    },
},
{   -logic_name => 'Waiting',
    -wait_for => 'Blocking',
},
{   -logic_name => 'Beta',
    -flow_into  => {
       '2' => [ 'Blocking' ],
    },
},
{   -logic_name => 'Blocking',
},
digraph test {
	ratio="compress"; concentrate = "true"; name = "AnalysisWorkflow"; pad = "0";
	analysis_Alpha [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Alpha</td></tr></table>>, shape="Mrecord", style="filled"];
	analysis_Beta [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Beta</td></tr></table>>, shape="Mrecord", style="filled"];
	analysis_Blocking [fillcolor="white", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Blocking</td></tr></table>>, shape="Mrecord", style="filled"];
	analysis_Waiting [fillcolor="grey", fontname="Times-Roman", label=<<table border="0" cellborder="0" cellspacing="0" cellpadding="1"><tr><td colspan="1">Waiting</td></tr></table>>, shape="Mrecord", style="filled"];
	analysis_Alpha -> analysis_Beta [color="blue", fontcolor="blue", fontname="Helvetica", label="#2\n"];
	analysis_Alpha -> analysis_Waiting [color="blue", fontcolor="blue", fontname="Helvetica", label="#1\n"];
	analysis_Beta -> analysis_Blocking [color="blue", fontcolor="blue", fontname="Helvetica", label="#2\n"];
	analysis_Blocking -> analysis_Waiting [arrowhead="tee", color="red"];

subgraph "cluster_tmpl5m9wtpx" {
	label="";
	style="filled";
	colorscheme="blues9";
	fillcolor="1";
	color="1";
	analysis_Alpha;
	analysis_Beta;
	analysis_Blocking;
	analysis_Waiting;
}
}

Although superficially this may seem similar to semaphore groups, there are a number of important differences:

  • There is no fan-funnel style relationship between blocking and waiting Jobs. If any Jobs in the blocking Analysis are incomplete then no waiting Jobs can start.

  • Likewise, if at some moment there are no incomplete Jobs in a blocking Analysis, then Jobs of the waiting Analysis will be able to start. This can happen even if there will subsequently be new Jobs seeded into the blocking Jnalysis.

  • Waiting Jobs will only wait on Analyses specifically referred to in the wait_for directive. If there is a child Analysis that should also block Jobs in a waiting Analysis, then that child Analysis must also be explicitly listed in the wait_for directive.