diff --git a/docs/apache-airflow/concepts/xcoms.rst b/docs/apache-airflow/concepts/xcoms.rst index 315c872ace424..eb11ff707fa5d 100644 --- a/docs/apache-airflow/concepts/xcoms.rst +++ b/docs/apache-airflow/concepts/xcoms.rst @@ -38,6 +38,9 @@ You can also use XComs in :ref:`templates `:: XComs are a relative of :doc:`variables`, with the main difference being that XComs are per-task-instance and designed for communication within a DAG run, while Variables are global and designed for overall configuration and value sharing. +:: + + Note: If the first task run is not succeeded then on every retry task XComs will be cleared to make the task run idempotent. Custom Backends ---------------