You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@GitHubDiom What you need is extra logic that permits aggregation (and waits for convergence of results). This is not in the domain of wskdeploy, but rather seems to need the features if the Composer tool/language/expressiveness which can be Conducted on the server side (see https://github.com/apache/openwhisk-composer).
These compositions would be expressed using the Composer operands/operations and not using wskdeploy (which is a declarative deployment tool for getting your models created and maintained (and setup with defaults params). The only composition wskdeploy really addresses are simple sequences.
Hi there,
I want to build a DAG job in openwhisk by using wskdeploy.
I know wskdeploy can create a sequence, but can wskdeploy create a DAG job?
suppose there are 4 DAG functions in a workflow, the relationship of the 4 functions is floowing:
A --> B ——>D
↘ ↗
C
That is, function
A
sends the same outputs to functionB
and functionC
.Note that functions
B
and functionC
can be executed in parallel (for different purposes).function
C
receives the output of the functionA
and sends the output to functionD
.Here, function
D
will not be executed until it receives both inputs from functionB
and functionC
.I think it is a common demand in real-world workflow, could anyone tell me how to do this?
The text was updated successfully, but these errors were encountered: