potiuk commented on code in PR #43477:
URL: https://github.com/apache/airflow/pull/43477#discussion_r1821515881
##########
docs/apache-airflow/core-concepts/dag-run.rst:
##########
@@ -144,21 +144,22 @@ if your DAG performs catchup internally.
Backfill
---------
-There can be the case when you may want to run the DAG for a specified
historical period e.g.,
-A data filling DAG is created with ``start_date`` **2019-11-21**, but another
user requires the output data from a month ago i.e., **2019-10-21**.
+You may want to run the DAG for a specified historical period. For example,
+a DAG is created with ``start_date`` **2024-11-21**, but another user requires
+the output data from a month prior, i.e. **2024-10-21**.
This process is known as Backfill.
-You may want to backfill the data even in the cases when catchup is disabled.
This can be done through CLI.
-Run the below command
+This can be done through API or CLI. For CLI usage, run the command below:
.. code-block:: bash
- airflow dags backfill \
+ airflow backfill create --dag DAG_ID \
Review Comment:
```suggestion
airflow backfill create --dag-id DAG_ID \
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]