Replies: 1 comment
-
Ok for this as well! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The
dora up
command starts local coordinator and daemon instances as background processes. This is convenient for getting something up quickly, but is has considerable drawbacks:dora start --attach
instances. However, not all dataflows have an attached CLI and merging all the outputs in a single terminal windows can lead to confusion too.dora destroy
, but this does not work for unresponsive instances.Running the
dora daemon
anddora coordinator
commands in extra terminal windows avoids these drawbacks. You see all of their stdout/stderr, you see their error if they crashed, and you can kill them through CTRL-C.The only real advantage of the
dora up
command is that it makes it easier to quickly run a local dataflow. However, this still isn't optimal, so we're discussing ways to make it easier to run local dataflow in #698. Once we implement a proposal like thedora run
subcommand, there is in my opinion no good reason to usedora up
anymore.Because of this, I propose to deprecate the
dora up
command once we have some good alternative way of running local dataflows.Drawbacks
dora up
command is used a lot in our current documentation, so deprecating it would be a change that affects most users.Beta Was this translation helpful? Give feedback.
All reactions