CLI reference#
The ewoksjob command line interface is a wrapper of the Celery command line interface.
We document below the commands that behave slightly differently or are specifically interesting for Ewoks.
For the rest, see the Celery command line interface documentation.
Tip
All commands below accept Celery options as [OPTIONS]
ewoksjob monitor#
ewoksjob [OPTIONS] monitor [FLOWER OPTIONS]
Starts a Flower instance to monitor jobs.
Alias of celery flower. Full details in the Flower documentation.
ewoksjob worker#
ewoksjob worker [OPTIONS]
Starts an Ewoks worker. Wrapper of celery worker
The Ewoks worker is a Celery worker for the ewoksjob.apps.ewoks app (i.e. the app CLI option -A/--app is automatically set to ewoksjob.apps.ewoks).
In addition, the log level is set to INFO by default (-l/--loglevel).
In short, this is equivalent of running
celery worker -A ewoksjob.apps.ewoks -l INFO
ewoksjob purge#
ewoksjob purge [OPTIONS]
Alias of celery purge. Erases all messages from all known task queues.
Warning
There is no undo operation for this command.