You can start anna background processes by using the anna CLI start command
If you have the anna crate installed, just use
> anna startIf you have not installed it, then you can build and run the development version using
> cargo run -- startBy 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 stopIf you have not installed it, then you can build and run the development version using
> cargo run -- stopFor instructions on how to run Anna in cluster mode, please see the hydro-project/cluster
repository.