jscheffl commented on code in PR #57579: URL: https://github.com/apache/airflow/pull/57579#discussion_r2479706907
########## airflow-core/docs/core-concepts/executor/local.rst: ########## @@ -21,32 +21,29 @@ Local Executor ============== -:class:`~airflow.executors.local_executor.LocalExecutor` runs tasks by spawning processes in a controlled fashion in different modes. +:class:`~airflow.executors.local_executor.LocalExecutor` runs tasks by spawning processes in a controlled fashion on the scheduler node. -Given that BaseExecutor has the option to receive a ``parallelism`` parameter to limit the number of process spawned, -when this parameter is ``0`` the number of processes that LocalExecutor can spawn is unlimited. +The parameter ``parallelism`` limits the number of process spawned not to overwhelm the node. +This parameter must be greater than ``0``. Review Comment: Same as below (hope this is now not making a circular dependency 8-) ) -- 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]
