jason810496 commented on code in PR #59087:
URL: https://github.com/apache/airflow/pull/59087#discussion_r2636761849
##########
providers/standard/docs/operators/python.rst:
##########
@@ -72,6 +72,33 @@ Pass extra arguments to the ``@task`` decorated function as
you would with a nor
:start-after: [START howto_operator_python_kwargs]
:end-before: [END howto_operator_python_kwargs]
+Async Python functions
+^^^^^^^^^^^^^^^^^^^^^^
+
+From Airflow 3.2 onward, async Python callables are now also supported out of
the box.
+This means we don't need to cope with the event loop and allows us to easily
invoke async Python code and async
+Airflow hooks which are not always available through deferred operators.
+
Review Comment:
I'm not sure do we need to explicitly mention the async `@task` will still
be executed in Worker instead of Triggerer on the doc. As some of the users
_might_ directly associate all the "async" workload in Airflow will be handled
by Triggerer instead of Worker.
--
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]