digdag icon indicating copy to clipboard operation
digdag copied to clipboard

[Question] How to define this DAG with "_parallel"?

Open dshintani404 opened this issue 3 years ago • 0 comments

Now I consider the following DAG. (2, 3) and (4, 5) are executed in parallel, respectively.

image

As far as I thought, this DAG cannot be represented in a format of digdag. If it is modified as following, it can.

image

"+workflow":
  "+1": {}
  "+group":
    _parallel: 'true'
   "+3": {}
   "+group":
      "+2": {}
      "+group":
        _parallel: 'true'
        "+4": {}
        "+5": {}    
  "+6": {}

Is there any workarounds to define the first DAG?

dshintani404 avatar Dec 03 '21 06:12 dshintani404