Presentation is loading. Please wait.

Presentation is loading. Please wait.

Part 8: DAGMan A: Grid Workflow Management B: DAGMan C: Laboratory: DAGMan.

Similar presentations


Presentation on theme: "Part 8: DAGMan A: Grid Workflow Management B: DAGMan C: Laboratory: DAGMan."— Presentation transcript:

1

2 Part 8: DAGMan

3 A: Grid Workflow Management B: DAGMan C: Laboratory: DAGMan

4 A: Grid Workflow Management

5 Job Dependencies In many applications, some jobs are dependent on other jobs E.g. job A must finish before job B starts Often because job B uses output from job A We call a set of interdependent jobs a workflow Condor-G can run jobs in any order We need a workflow manager

6 Two Motivating Examples The Sloan Digital Sky Survey The Montage Project

7 Sloan Digital Sky Survey Map one-quarter of the entire sky Determine the positions and absolute brightness of more than 100 million celestial objects. Measure the distance to a million of the nearest galaxies, and to 100,000 quasars. http://www.sdss.org

8 Workflow to Find Galaxy Clusters catalog cluster 5 4 core brg field tsObj 3 2 1 brg field tsObj 2 1 brg field tsObj 2 1 brg field tsObj 2 1 core 3 fieldPrep maxBrg maxBcg bcgCoal getCatalog

9 Workflow to Find Galaxy Clusters maxBrg maxBcg bcgCoal getCatalog

10 Montage Create a large mosaic image from many smaller images Used for astronomy data Correct optical distortions and intensity differences http://montage.ipac.caltech.edu

11 Montage Workflow Data Stage in nodes Montage compute nodes Data stage out nodes Inter pool transfer nodes

12 Montage Workflow 1202 nodes

13 B: DAGMan

14 DAGMan Directed Acyclic Graph Manager Workflow manager for Condor-G DAGMan allows you to specify the dependencies between your Condor jobs, so it can manage them automatically for you. By default, Condor may run your jobs in any order, or everything simultaneously, so we need DAGMan to enforce an ordering when necessary. (e.g., “Don’t run job “B” until job “A” has completed successfully.”)

15 What is a DAG? A DAG is the data structure used by DAGMan to represent these dependencies. Each job is a “node” in the DAG. Each node can have any number of “parent” or “children” nodes – as long as there are no loops! Job A Job BJob C Job D

16 Defining a DAG A DAG is defined by a.dag file, listing each of its nodes and their dependencies: # diamond.dag Job A a.sub Job B b.sub Job C c.sub Job D d.sub Parent A Child B C Parent B C Child D each node will run the Condor job specified by its accompanying Condor submit file Job A Job BJob C Job D

17 Submitting a DAG To start your DAG, just run condor_submit_dag with your.dag file, and Condor will start a personal DAGMan daemon which to begin running your jobs: % condor_submit_dag diamond.dag condor_submit_dag submits a job with DAGMan as the executable. This job happens to run on the submitting machine, not any other computer. Thus the DAGMan daemon itself runs as a Condor job, so you don’t have to baby-sit it.

18 DAGMan Running a DAG DAGMan acts as a “meta-scheduler”, managing the submission of your jobs to Condor based on the DAG dependencies. Condor Job Queue C D A A B.dag File

19 DAGMan Running a DAG (cont’d) DAGMan holds & submits jobs to the Condor queue at the appropriate times. Condor Job Queue C D B C B A

20 DAGMan Running a DAG (cont’d) In case of a job failure, DAGMan continues until it can no longer make progress, and then creates a “rescue” file with the current state of the DAG. Condor Job Queue X D A B Rescue File

21 DAGMan Recovering a DAG Once the failed job is ready to be re-run, the rescue file can be used to restore the prior state of the DAG. Condor Job Queue C D A B Rescue File C

22 DAGMan Recovering a DAG (cont’d) Once that job completes, DAGMan will continue the DAG as if the failure never happened. Condor Job Queue C D A B D

23 DAGMan Finishing a DAG Once the DAG is complete, the DAGMan job itself is finished, and exits. Condor Job Queue C D A B

24 Additional DAGMan Features Provides other handy features for job management… nodes can have PRE & POST scripts failed nodes can be automatically re-tried a configurable number of times job submission can be “throttled”

25 Another sample DAGMan submit file # Filename: diamond.dag Job A A.condor Job B B.condor Job C C.condor Job D D.condor Script PRE A top_pre.csh Script PRE B mid_pre.perl $JOB Script POST B mid_post.perl $JOB $RETURN Script PRE C mid_pre.perl $JOB Script POST C mid_post.perl $JOB $RETURN Script PRE D bot_pre.csh PARENT A CHILD B C PARENT B C CHILD D Retry C 3 Job A Job BJob C Job D

26 Lab 8: DAGMan

27 In this lab, you’ll: Run a simple DAGMan job Run a more complex DAGMan job Recover a failed DAGMan job

28 Credits NSF disclaimer Portions of this presentation were adapted from the following sources: Jaime Frey, UW-Madison


Download ppt "Part 8: DAGMan A: Grid Workflow Management B: DAGMan C: Laboratory: DAGMan."

Similar presentations


Ads by Google