You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
-2Lines changed: 0 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,6 @@
4
4
5
5
Full documentation is available on [readthedocs](http://mrq.readthedocs.org/en/latest/)
6
6
7
-
/!\ MRQ is not yet ready for public use. Soon!
8
-
9
7
# Why?
10
8
11
9
MRQ is an opinionated task queue. It aims to be simple and beautiful like [RQ](http://python-rq.org) while having performances close to [Celery](http://celeryproject.org)
Copy file name to clipboardExpand all lines: docs/configuration.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,13 +50,13 @@ DEFAULT_JOB_CANCEL_TTL = 86400 #Seconds the tasks are kept in MongoDB when statu
50
50
DEFAULT_JOB_TIMEOUT=3600#In seconds, delay before interrupting the job.Defaults to 3600 seconds which is 1 hour.
51
51
DEFAULT_JOB_MAX_RETRIES=3#Set the status to "maxretries" after retrying that many times.Defaults to 3 seconds.
52
52
DEFAULT_JOB_RETRY_DELAY=3#Seconds before a job in retry status is requeued again.Defaults to 3 seconds.
53
-
USE_LARGE_JOB_IDS=False#Do not use compacted job IDs in Redis. For compatibility with 0.1.x only. Defaults to
53
+
USE_LARGE_JOB_IDS=False#Do not use compacted job IDs in Redis. For compatibility with 0.1.x only. Defaults to
54
54
55
55
""" mrq-worker settings
56
56
"""
57
-
QUEUES= ("default",) # The queues to listen on.Defaults to default , which will listen on all queues.
58
-
MAX_JOBS=0#Gevent:max number of jobs to do before quitting. Temp workaround for memory leaks.Defaults to 0
59
-
MAX_MEMORY=1#Max memory (in Mb) after which the process will be shut down. Use with PROCESS = [1-N] to have supervisord automatically respawn the worker when this happens.Defaults to 1
57
+
QUEUES= ("default",) # The queues to listen on.Defaults to default , which will listen on all queues.
58
+
MAX_JOBS=0#Gevent:max number of jobs to do before quitting. Workaround for memory leaks in your tasks. Defaults to 0
59
+
MAX_MEMORY=1#Max memory (in Mb) after which the process will be shut down. Use with PROCESS = [1-N] to have supervisord automatically respawn the worker when this happens.Defaults to 1
60
60
GRENLETS=1#Max number of greenlets to use.Defaults to 1.
61
61
PROCESSES=0#Number of processes to launch with supervisord.Defaults to 0.
62
62
SUPERVISORD_TEMPLATE="supervisord_templates/default.conf"#Path of supervisord template to use. Defaults to supervisord_templates/default.conf.
0 commit comments