I am trying to use kedro to run a workflow. Following figure is my workflow(node 1-3 is sequential and nodes 31, 32 and 33 is three branches which from node 3). You can see the kedro is running sequentially from 1 to 3, due to the clearly dependency among nodes. However, when it comes to the 31, 32 and 33 nodes, the kedro just ran really randomly. It can start from 31 or 32 or 33. Does anyone has any idea that I can let the kedro ran 31 first then 32 and then 33? Thanks!
I have tried to tag all the nodes, but the running order is kept randomly when the kedro ran into the node of 31 to 33