You can start anna background processes by using the anna
CLI start
command
If you have the anna
crate installed, just use
> anna start
If you have not installed it, then you can build and run the development version using
> cargo run -- start
By default, the conf/anna-config.yml
config file is used, which only specifies one routing thread and one storage
thread.
You are welcome to modify this file if you would like, but we generally do not recommend running more than one thread per process in local mode.
You can stop the running background processes by using the anna
CLI stop
command
If you have the anna
crate installed, just use
> anna stop
If you have not installed it, then you can build and run the development version using
> cargo run -- stop
For instructions on how to run Anna in cluster mode, please see the hydro-project/cluster
repository.