@@ -29,17 +29,16 @@ executed.
29
29
A process listening to one or more queues for ** jobs to be scheduled for execution** , and schedule them
30
30
to be executed by a worker.
31
31
32
- This is a sub-process of worker.
32
+ This is a subprocess of worker.
33
33
34
34
### Queued Job Execution
35
35
36
- Once a worker listening to the queue becomes available,
37
- the job will be executed
36
+ Once a worker listening to the queue becomes available, the job will be executed
38
37
39
38
### Scheduled Task Execution
40
39
41
- A scheduler checking the queue periodically will check
42
- whether the time the job should be executed has come, and if so, it will queue it.
40
+ A scheduler checking the queue periodically will check whether the time the job should be executed has come, and if so,
41
+ it will queue it.
43
42
44
43
* A job is considered scheduled if it is queued to be executed, or scheduled to be executed.
45
44
* If there is no scheduler, the job will not be queued to run.
@@ -49,7 +48,7 @@ whether the time the job should be executed has come, and if so, it will queue i
49
48
django models storing information about jobs. So it is possible to schedule using
50
49
django-admin and track their status.
51
50
52
- There are 3 types of scheduled task .
51
+ There are three types of ScheduledTask .
53
52
54
53
* ` Scheduled Task ` - Run a job once, on a specific time (can be immediate).
55
54
* ` Repeatable Task ` - Run a job multiple times (limited number of times or infinite times) based on an interval
0 commit comments