How are composite solids executed? #3095
-
Hi, if I have a composite solid, will that be executed as one single solid on k8s-celery or it's just a way to make complex solids to make more user-friendly? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Just a way to make complex DAG structures more user friendly. When the "pipeline" graph of solids and composite solids is compiled in to an
I believe it should be what ever ended up on the solid invocation. Tags on the composite solid only effect dagit display at this time. Note that you can set additional tags or override them at the solid invocation site
The resulting solid invocation |
Beta Was this translation helpful? Give feedback.
Just a way to make complex DAG structures more user friendly. When the "pipeline" graph of solids and composite solids is compiled in to an
ExecutionPlan
all of the composition melts away and you end up with a flat graph ofExecutionStep
s that correspond with theSolid
s which may have been wrapped in composites.I believe it should be what ever ended up on the solid invocation. Tags on the…