Are there any disadvantages to using dynamic rathe...
# ask-the-community
y
Are there any disadvantages to using dynamic rather than static workflow? I can only think of the disadvantage that we cannot access the DAG on registration. Any other reasons why static workflow might be better in some cases?
d
@Younes El Hjouji great question. So the main disadvantage is performance. Dynamics require executing the defined code to "dynamically" generate the sub DAG, this means spinning up another
Pod
during runtime. Alternatively, subworkflows do not need this step as the DAG is already defined.
152 Views