Replies: 1 comment 2 replies
-
Proposal: Add a dora subcommand to run a dataflow without spawning separate daemon and coordinator processes.We already have an internal We could expose this internal functionality as a
Once the command is implemented and working well, we could update our introductionary guides and documentation to use |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Our current architecture always requires a coordinator and at least one daemon in order to run a dataflow. This makes starting a local dataflow quite complex:
dora coordinator
dora daemon
dora start dataflow.yml
We also have a
dora up
command that spawns the coordinator and daemon in the background, but this just avoids the need of multiple terminals and doesn't remove the complexity.Local dataflows are quite common, especially when getting started. So it would be a good idea to make it easier to run a dataflow when coordinator, daemon, and the CLI are on the same machine.
Beta Was this translation helpful? Give feedback.
All reactions