建立自訂 @task 裝飾器

從 Airflow 2.2 開始,可以從提供者套件中將自訂裝飾器新增至 TaskFlow 介面,並使這些裝飾器以原生方式顯示為 @task.____ 設計的一部分。

舉例來說。假設您嘗試建立一個更簡單的機制來將 python 函數作為 “foo” 任務執行。建立和註冊 @task.foo 的步驟如下:

  1. 建立 FooDecoratedOperator

    在這種情況下,我們假設您有一個現有的 FooOperator,它接受一個 python 函數作為參數。透過建立一個繼承自 FooOperatorairflow.decorators.base.DecoratedOperatorFooDecoratedOperator,Airflow 將提供將您的新類別視為 taskflow 原生類別所需的大部分功能。

    您也應該覆寫 custom_operator_name 屬性,以便為任務提供自訂名稱。例如,apache-airflow-providers-docker 提供者中的 _DockerDecoratedOperator 將其設定為 @task.docker,以指示其實現的裝飾器名稱。

  2. 建立 foo_task 函數

    一旦您有了裝飾過的類別,請建立像這樣的函數,將新的 FooDecoratedOperator 轉換為 TaskFlow 函數裝飾器!

    from typing import TYPE_CHECKING
    from airflow.decorators.base import task_decorator_factory
    
    if TYPE_CHECKING:
        from airflow.decorators.base import TaskDecorator
    
    
    def foo_task(
        python_callable: Callable | None = None,
        multiple_outputs: bool | None = None,
        **kwargs,
    ) -> "TaskDecorator":
        return task_decorator_factory(
            python_callable=python_callable,
            multiple_outputs=multiple_outputs,
            decorated_operator_class=FooDecoratedOperator,
            **kwargs,
        )
    
  3. 在您的提供者的 get_provider_info 中註冊您的新裝飾器

    最後,將鍵值 task-decorators 新增至從提供者進入點返回的 dict,如如何建立您自己的提供者中所述。這應該是一個列表,每個項目都包含 nameclass-name 鍵。當 Airflow 啟動時,ProviderManager 類別將自動匯入此值,並且 task.foo 將作為新的裝飾器運作!

    def get_provider_info():
        return {
            "package-name": "foo-provider-airflow",
            "name": "Foo",
            "task-decorators": [
                {
                    "name": "foo",
                    # "Import path" and function name of the `foo_task`
                    "class-name": "name.of.python.package.foo_task",
                }
            ],
            # ...
        }
    

    請注意,名稱必須是有效的 python 識別符。

(可選) 新增 IDE 自動完成支援

注意

本節主要適用於 apache-airflow 管理的提供者。我們尚未決定是否允許第三方提供者以這種方式註冊自動完成。

無論好壞,Python IDE 無法自動完成動態生成的方法(請參閱 JetBrain 關於此主題的撰寫)。

為了繞過這個問題,提供了一個型別存根 airflow/decorators/__init__.pyi 來靜態宣告每個任務裝飾器的型別簽章。新加入的任務裝飾器應如下宣告其簽章存根

airflow/decorators/__init__.pyi

    def docker(
        self,
        *,
        multiple_outputs: bool | None = None,
        use_dill: bool = False,  # Added by _DockerDecoratedOperator.
        python_command: str = "python3",
        # 'command', 'retrieve_output', and 'retrieve_output_path' are filled by
        # _DockerDecoratedOperator.
        image: str,
        api_version: str | None = None,
        container_name: str | None = None,
        cpus: float = 1.0,
        docker_url: str | None = None,
        environment: dict[str, str] | None = None,
        private_environment: dict[str, str] | None = None,
        env_file: str | None = None,
        force_pull: bool = False,
        mem_limit: float | str | None = None,
        host_tmp_dir: str | None = None,
        network_mode: str | None = None,
        tls_ca_cert: str | None = None,
        tls_client_cert: str | None = None,
        tls_client_key: str | None = None,
        tls_verify: bool = True,
        tls_hostname: str | bool | None = None,
        tls_ssl_version: str | None = None,
        mount_tmp_dir: bool = True,
        tmp_dir: str = "/tmp/airflow",
        user: str | int | None = None,
        mounts: list[str] | None = None,
        entrypoint: str | list[str] | None = None,
        working_dir: str | None = None,
        xcom_all: bool = False,
        docker_conn_id: str | None = None,
        dns: list[str] | None = None,
        dns_search: list[str] | None = None,
        auto_remove: Literal["never", "success", "force"] = "never",
        shm_size: int | None = None,
        tty: bool = False,
        hostname: str | None = None,
        privileged: bool = False,
        cap_add: str | None = None,
        extra_hosts: dict[str, str] | None = None,
        timeout: int = 60,
        device_requests: list[dict] | None = None,
        log_opts_max_size: str | None = None,
        log_opts_max_file: str | None = None,
        ipc_mode: str | None = None,
        skip_on_exit_code: int | Container[int] | None = None,
        port_bindings: dict | None = None,
        ulimits: list[dict] | None = None,
        **kwargs,
    ) -> TaskDecorator:
        """Create a decorator to convert the decorated callable to a Docker task.

        :param multiple_outputs: If set, function return value will be unrolled to multiple XCom values.
            Dict will unroll to XCom values with keys as XCom keys. Defaults to False.
        :param use_dill: Whether to use dill or pickle for serialization
        :param python_command: Python command for executing functions, Default: python3
        :param image: Docker image from which to create the container.
            If image tag is omitted, "latest" will be used.
        :param api_version: Remote API version. Set to ``auto`` to automatically
            detect the server's version.
        :param container_name: Name of the container. Optional (templated)
        :param cpus: Number of CPUs to assign to the container.
            This value gets multiplied with 1024. See
            https://docker-docs.dev.org.tw/engine/reference/run/#cpu-share-constraint
        :param docker_url: URL of the host running the docker daemon.
            Default is the value of the ``DOCKER_HOST`` environment variable or unix://var/run/docker.sock
            if it is unset.
        :param environment: Environment variables to set in the container. (templated)
        :param private_environment: Private environment variables to set in the container.
            These are not templated, and hidden from the website.
        :param env_file: Relative path to the ``.env`` file with environment variables to set in the container.
            Overridden by variables in the environment parameter.
        :param force_pull: Pull the docker image on every run. Default is False.
        :param mem_limit: Maximum amount of memory the container can use.
            Either a float value, which represents the limit in bytes,
            or a string like ``128m`` or ``1g``.
        :param host_tmp_dir: Specify the location of the temporary directory on the host which will
            be mapped to tmp_dir. If not provided defaults to using the standard system temp directory.
        :param network_mode: Network mode for the container. It can be one of the following:

            - ``"bridge"``: Create new network stack for the container with default docker bridge network
            - ``"none"``: No networking for this container
            - ``"container:<name|id>"``: Use the network stack of another container specified via <name|id>
            - ``"host"``: Use the host network stack. Incompatible with `port_bindings`
            - ``"<network-name>|<network-id>"``: Connects the container to user created network
              (using ``docker network create`` command)
        :param tls_ca_cert: Path to a PEM-encoded certificate authority
            to secure the docker connection.
        :param tls_client_cert: Path to the PEM-encoded certificate
            used to authenticate docker client.
        :param tls_client_key: Path to the PEM-encoded key used to authenticate docker client.
        :param tls_verify: Set ``True`` to verify the validity of the provided certificate.
        :param tls_hostname: Hostname to match against
            the docker server certificate or False to disable the check.
        :param tls_ssl_version: Version of SSL to use when communicating with docker daemon.
        :param mount_tmp_dir: Specify whether the temporary directory should be bind-mounted
            from the host to the container. Defaults to True
        :param tmp_dir: Mount point inside the container to
            a temporary directory created on the host by the operator.
            The path is also made available via the environment variable
            ``AIRFLOW_TMP_DIR`` inside the container.
        :param user: Default user inside the docker container.
        :param mounts: List of mounts to mount into the container, e.g.
            ``['/host/path:/container/path', '/host/path2:/container/path2:ro']``.
        :param entrypoint: Overwrite the default ENTRYPOINT of the image
        :param working_dir: Working directory to
            set on the container (equivalent to the -w switch the docker client)
        :param xcom_all: Push all the stdout or just the last line.
            The default is False (last line).
        :param docker_conn_id: The :ref:`Docker connection id <howto/connection:docker>`
        :param dns: Docker custom DNS servers
        :param dns_search: Docker custom DNS search domain
        :param auto_remove: Enable removal of the container when the container's process exits. Possible values:

            - ``never``: (default) do not remove container
            - ``success``: remove on success
            - ``force``: always remove container
        :param shm_size: Size of ``/dev/shm`` in bytes. The size must be
            greater than 0. If omitted uses system default.
        :param tty: Allocate pseudo-TTY to the container
            This needs to be set see logs of the Docker container.
        :param hostname: Optional hostname for the container.
        :param privileged: Give extended privileges to this container.
        :param cap_add: Include container capabilities
        :param extra_hosts: Additional hostnames to resolve inside the container,
            as a mapping of hostname to IP address.
        :param device_requests: Expose host resources such as GPUs to the container.
        :param log_opts_max_size: The maximum size of the log before it is rolled.
            A positive integer plus a modifier representing the unit of measure (k, m, or g).
            Eg: 10m or 1g Defaults to -1 (unlimited).
        :param log_opts_max_file: The maximum number of log files that can be present.
            If rolling the logs creates excess files, the oldest file is removed.
            Only effective when max-size is also set. A positive integer. Defaults to 1.
        :param ipc_mode: Set the IPC mode for the container.
        :param skip_on_exit_code: If task exits with this exit code, leave the task
            in ``skipped`` state (default: None). If set to ``None``, any non-zero
            exit code will be treated as a failure.
        :param port_bindings: Publish a container's port(s) to the host. It is a
            dictionary of value where the key indicates the port to open inside the container
            and value indicates the host port that binds to the container port.
            Incompatible with ``"host"`` in ``network_mode``.
        :param ulimits: List of ulimit options to set for the container. Each item should
            be a :py:class:`docker.types.Ulimit` instance.
        """

簽章應僅允許僅限關鍵字的引數,包括一個名為 multiple_outputs 的引數,該引數預設會自動提供。所有其他引數都應直接從實際的 FooOperator 複製,我們建議新增註解以說明哪些引數由 FooDecoratedOperator 自動填寫,因此不包含在內。

如果新的裝飾器可以在沒有引數的情況下使用(例如 @task.python 而不是 @task.python()),您也應該在「實際」定義之後立即新增一個接受單個可呼叫物件的重載,以便 mypy 可以將該函數識別為「裸裝飾器」

airflow/decorators/__init__.pyi

    @overload
    def python(self, python_callable: Callable[FParams, FReturn]) -> Task[FParams, FReturn]: ...

一旦變更合併並且下一個 Airflow(次要或修補程式)版本發布,使用者將能夠在 IDE 自動完成中看到您的裝飾器。此自動完成將根據使用者安裝的提供者版本而變更。

請注意,此步驟不是建立可運作的裝飾器所必需的,但確實為提供者的使用者創造了更好的體驗。

此條目是否對您有幫助?