dabla commented on code in PR #59087:
URL: https://github.com/apache/airflow/pull/59087#discussion_r2636963816
##########
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:
Yes, i could explicitly mention difference between async operators and
deferred operators, as async operators run on the worker and deferred operators
run on the triggerer.
--
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]