I am using dagster to running into local node.js microservices pipelines, in order to execute test.
The ide is execute n docker_files, and n node.js microservices, easily like you can do with dagster.
The problem is that when I execute the first second one task a shell command to execute a docker container, dagsteer keep in that point, and not execute all task in the same level.
Current dag logs like this
login aws
|
|
|
v
[docker_elastic, docker_kafka, sleep_10]
|
|
|
v
[node_service_one, node_service_two, node_service__three]
Can I execute at same time all docker_elastic and all node_services?
Is there another easy to configure option to build a local dags easily?
Thanks