amoghrajesh commented on code in PR #49389:
URL: https://github.com/apache/airflow/pull/49389#discussion_r2055220505


##########
airflow-core/docs/core-concepts/executor/index.rst:
##########
@@ -239,7 +239,8 @@ Important BaseExecutor Methods
 These methods don't require overriding to implement your own executor, but are 
useful to be aware of:
 
 * ``heartbeat``: The Airflow scheduler Job loop will periodically call 
heartbeat on the executor. This is one of the main points of interaction 
between the Airflow scheduler and the executor. This method updates some 
metrics, triggers newly queued tasks to execute and updates state of 
running/completed tasks.
-* ``queue_command``: The Airflow Executor will call this method of the 
BaseExecutor to provide tasks to be run by the executor. The BaseExecutor 
simply adds the TaskInstances to an internal list of queued tasks within the 
executor.
+* ``queue_command``: Airflow 2 way of doing things. The Airflow Executor will 
call this method of the BaseExecutor to provide tasks to be run by the 
executor. The BaseExecutor simply adds the TaskInstances to an internal list of 
queued tasks within the executor. CeleryK8s and LocalK8s executors are examples 
of this.

Review Comment:
   Yep that has been removed / reworked



-- 
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: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to