Hi, I’m new to Dagster, and have a couple of simple questions that I can’t seem to figure out by reading the documentation.
Let’s say, there is a task (C) dependent on task (A) and (B), where A and B are independent of each other. I could write a Python script where Solid A, B will be run from C, and they all run successfully.
1. How can I instruct Dagster to run A and B concurrently?
2. If I need to re-run A and C, but not B, how do I do that without changing the script?