Fix typo in Custom XCom backend (#10588)

This commit is contained in:
Kaxil Naik 2020-08-26 19:04:33 +01:00 коммит произвёл GitHub
Родитель 8349061f9c
Коммит 2fc961458e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -741,7 +741,7 @@ for inter-task communication rather than global settings.
Custom XCom backend Custom XCom backend
------------------- -------------------
It is possible to change ``XCom`` behaviour os serialization and deserialization of tasks' result. It is possible to change ``XCom`` behaviour of serialization and deserialization of tasks' result.
To do this one have to change ``xcom_backend`` parameter in Airflow config. Provided value should point To do this one have to change ``xcom_backend`` parameter in Airflow config. Provided value should point
to a class that is subclass of :class:`~airflow.models.xcom.BaseXCom`. To alter the serialization / to a class that is subclass of :class:`~airflow.models.xcom.BaseXCom`. To alter the serialization /
deserialization mechanism the custom class should override ``serialize_value`` and ``deserialize_value`` deserialization mechanism the custom class should override ``serialize_value`` and ``deserialize_value``

Просмотреть файл

@ -52,7 +52,7 @@ When a DAG submits a task, the KubernetesExecutor requests a worker pod from the
In contrast to the Celery Executor, the Kubernetes Executor does not require additional components such as Redis and Flower, but does require the Kubernetes infrastructure. In contrast to the Celery Executor, the Kubernetes Executor does not require additional components such as Redis and Flower, but does require the Kubernetes infrastructure.
One example of an Airflow deployment running on a distributed set of five nodes in a Kubernetes cluster is shown below. One example of an Airflow deployment running on a distributed set of five nodes in a Kubernetes cluster is shown below.
.. image:: ../img/arch-diag-kubernetes2.png .. image:: ../img/arch-diag-kubernetes2.png