Commit b235411 1 parent 406d31c commit b235411 Copy full SHA for b235411
File tree 1 file changed +12
-1
lines changed
1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,20 @@ The Scheduler
4
4
The Airflow scheduler monitors all tasks and all dags and schedules the
5
5
task instances whose dependencies have been met. Behinds the scene,
6
6
it monitors a folder for all dag objects it may contain,
7
- and periodically inspects all tasks to see whether is can schedule the
7
+ and periodically inspects all tasks to see whether it can schedule the
8
8
next run.
9
9
10
+ The scheduler starts an instance of the executor specified in the your
11
+ ``airflow.cfg ``, if it happens to be the LocalExecutor, tasks will be
12
+ executed as subprocesses, in the case of CeleryExecutor, tasks are
13
+ executed remotely.
14
+
15
+ To start a scheduler, simply run the command:
16
+
17
+ .. code :: bash
18
+
19
+ airflow scheduler
20
+
10
21
Note that:
11
22
12
23
* It **won't parallelize ** multiple instances of the same tasks, it always wait for the previous schedule to be done to move forward
You can’t perform that action at this time.
0 commit comments