1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
.TH RQWORKER 1
.SH NAME
rqworker \- Command line monitor to start an RQ worker.
.SH SYNOPSIS
.B rqworker [\fI\,OPTIONS\/\fR] [\fI\,QUEUES\/\fR]...
.SH DESCRIPTION
.IP
RQWORKER is a command\-line monitor to start an RQ worker. It is part of python-rq module package.
A worker is a Python process that typically runs in the background and exists solely as a
work horse to perform lengthy or blocking tasks that you don’t want to perform inside web processes.
.SH OPTIONS
.TP
.B \fB\-b\fR, \fB\-\-burst\fR
Run in burst mode (quit after all work is done)
.TP
.B --logging_level TEXT
Set logging level
.TP
.B --log-format TEXT
Set the format of the logs
.TP
.B --date-format TEXT
Set the date format of the logs
.TP
.B -n, --name TEXT
Specify a different name
.TP
.B --results-ttl INTEGER
Default results timeout to be used
.TP
.B --worker-ttl INTEGER
Default worker timeout to be used
.TP
.B --job-monitoring-interval INTEGER
Default job monitoring interval to be used
.TP
.B --disable-job-desc-logging
Turn off description logging.
.TP
.B -v, --verbose
Show more output
.TP
.B -q, --quiet
Show less output
.TP
.B --sentry-dsn TEXT
Report exceptions to this Sentry DSN
.TP
.B --exception-handler TEXT
Exception handler(s) to use
.TP
.B --pid TEXT
Write the process ID number to a file at the specified path
.TP
.B -d, --disable-default-exception-handler
Disable RQ's default exception handler
.TP
.B --max-jobs INTEGER
Maximum number of jobs to execute
.TP
.B -P, --path TEXT
Specify the import path.
.TP
.B --connection-class TEXT
Redis client class to use
.TP
.B --queue-class TEXT
RQ Queue class to use
.TP
.B -j, --job-class TEXT
RQ Job class to use
.TP
.B -w, --worker-class TEXT
RQ Worker class to use
.TP
.B -c, --config TEXT
Module containing RQ settings.
.TP
.B -u, --url TEXT
URL describing Redis connection details.
.TP
.B --help
Show this message and exit.
|