|
|
|
@ -69,11 +69,15 @@ In addition to `--burst`, `rq worker` also accepts these arguments:
|
|
|
|
|
* `--date-format`: Datetime format for the worker logs, defaults to `'%H:%M:%S'`
|
|
|
|
|
* `--disable-job-desc-logging`: Turn off job description logging.
|
|
|
|
|
* `--max-jobs`: Maximum number of jobs to execute.
|
|
|
|
|
* `--dequeue-strategy`: The strategy to dequeue jobs from multiple queues (one of `default`, `random` or `round_robin`, defaults to `default`)
|
|
|
|
|
|
|
|
|
|
_New in version 1.8.0._
|
|
|
|
|
* `--serializer`: Path to serializer object (e.g "rq.serializers.DefaultSerializer" or "rq.serializers.JSONSerializer")
|
|
|
|
|
|
|
|
|
|
_New in version 1.14.0._
|
|
|
|
|
* `--dequeue-strategy`: The strategy to dequeue jobs from multiple queues (one of `default`, `random` or `round_robin`, defaults to `default`)
|
|
|
|
|
* `--max-idle-time`: if specified, worker will wait for X seconds for a job to arrive before shuttind down.
|
|
|
|
|
* `--maintenance-interval`: defaults to 600 seconds. Runs maintenance tasks every X seconds.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Inside the worker
|
|
|
|
|
|
|
|
|
|
### The Worker Lifecycle
|
|
|
|
|