Copilot commented on code in PR #68223:
URL: https://github.com/apache/airflow/pull/68223#discussion_r3373362656
##########
airflow-core/docs/authoring-and-scheduling/language-sdks/index.rst:
##########
@@ -160,3 +165,25 @@ Both settings can be supplied as environment variables
using the standard Airflo
AIRFLOW__SDK__COORDINATORS='{"my-coordinator": {...}}'
AIRFLOW__SDK__QUEUE_TO_COORDINATOR='{"jdk17": "my-coordinator"}'
+
+.. _language-sdks/bundle-spec:
+
+Implementing a new compiled language SDK
+----------------------------------------
+
+:class:`task-sdk:airflow.sdk.coordinators.executable.ExecutableCoordinator`
runs a task by exec-ing the
+bundle file directly. It therefore fits **only compiled languages whose build
artifact is a standalone
+binary the worker can execute with no additional runtime dependency** - that
is, no language runtime,
+virtual machine, or interpreter has to be installed on the worker for the
binary to run (Go, Rust, C, C++,
+Zig, ...). Languages whose artifact still needs a runtime present at execution
time do not fit this
+coordinator; JVM languages, for example, compile to bytecode that requires a
JRE, and are served by the
+:class:`task-sdk:airflow.sdk.coordinators.java.JavaCoordinator` instead.
+
+To support a new such language, produce a *bundle* in the shared on-disk
format the coordinator consumes and
+speak the coordinator IPC protocol (the ``--comm`` / ``--logs`` socket
arguments). That format - the
+``AFBNDL01`` footer appended to the executable, the binary integrity hash, and
the ``airflow-metadata.yaml``
+manifest of ``dag_id`` s and ``task_id`` s - is specified, together with the
reader algorithm and the
Review Comment:
Inline code literals shouldn’t be separated from their plural suffix;
``dag_id`` s / ``task_id`` s will render with an extra space in the built docs.
##########
airflow-core/docs/authoring-and-scheduling/language-sdks/go.rst:
##########
@@ -0,0 +1,433 @@
+ .. Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ .. http://www.apache.org/licenses/LICENSE-2.0
+
+ .. Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations
+ under the License.
+
+.. _go-sdk:
+
+Go SDK
+======
+
+|experimental|
+
+The Go SDK lets you implement Airflow task logic in Go, with native access to
the Airflow "model"
+(Variables, Connections, and XCom). The Dag and its scheduling remain in
Python; individual tasks delegate
+to a compiled Go *bundle* that is launched by
+:class:`~airflow.sdk.coordinators.executable.ExecutableCoordinator` for each
task instance.
+
+Because Go is a compiled language, every task must be compiled ahead of time
and registered inside a single,
+self-contained native executable called a **bundle**. The bundle also embeds
its Dag source and a metadata
+manifest (the ``dag_id`` and ``task_id`` map) in a footer appended to the
executable, so the executable *is*
+the bundle: one runnable file to ship, with no separate manifest or archive.
The
+:ref:`airflow-go-pack <go-sdk/build>` tool builds and packs that bundle.
+
+.. contents:: Contents
+ :local:
+ :depth: 2
+
+Prerequisites
+-------------
+
+* Go 1.24 or later to build and pack bundles. This is a build-time requirement
only; the worker that runs a
+ packed bundle needs no Go toolchain, because the bundle is a self-contained
native executable.
+* The packed bundle must be accessible from the Airflow worker, under a
directory the coordinator scans.
+* The ``apache-airflow-task-sdk`` package (installed with Airflow) provides
the coordinator; no additional
+ Python packages are needed.
+
+Deployment modes
+----------------
+
+A packed bundle can run in two ways. The same binary works in both, and you
pick one per deployment:
+
+* **Coordinator (recommended).** A Python task runner launches the Go bundle
directly, with no separate Go
+ worker process on the host. This is the same coordinator mechanism the Java
SDK uses. Because the mature
+ Python supervisor handles the Airflow-facing concerns, this path inherits
remote task logs (S3/GCS), the
+ full range of task states, and alternate XCom backends, rather than
reimplementing them in Go. Those are
+ exactly the features the Edge Worker path is still missing.
+* **Edge Worker.** A long-running Go process (``airflow-go-edge-worker``)
polls Airflow for work and runs
+ your bundle, with no Python in the data path. It runs end-to-end today but
is missing the features listed
+ under :ref:`go-sdk/limitations`.
+
+The rest of this guide covers the recommended coordinator path; see
:ref:`go-sdk/edge-worker` for a summary
+of the Edge Worker.
+
+Quick start
+-----------
+
+The following example shows the minimal moving parts: a Python Dag with two
stub tasks, and a Go
+implementation of those tasks.
+
+Python Dag (the scheduling side)
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+.. code-block:: python
+
+ from airflow.sdk import dag, task
+
+
+ @dag
+ def simple_dag():
+ @task.stub(queue="golang")
+ def extract(): ...
+
+ @task.stub(queue="golang")
+ def transform(): ...
+
+ extract() >> transform()
+
+
+ simple_dag()
+
+``@task.stub`` declares the *shape* of the Go tasks (their names and
dependencies) without any Python
+implementation. The ``queue`` value routes the task to the Go coordinator.
+
+Go implementation
+~~~~~~~~~~~~~~~~~~
+
+A task is an ordinary Go function. The runtime inspects its signature and
injects arguments by type, so each
+task declares only the parameters it needs.
+
+.. code-block:: go
+
+ import (
+ "context"
+ "log/slog"
+ "runtime"
+
+ "github.com/apache/airflow/go-sdk/sdk"
+ )
+
+ func extract(ctx context.Context, client sdk.Client, log *slog.Logger)
(any, error) {
+ conn, err := client.GetConnection(ctx, "test_http")
+ if err != nil {
+ return nil, err
+ }
+ log.Info("fetched connection", "host", conn.Host)
+ // ... do work, honour ctx cancellation ...
+ return map[string]any{"go_version": runtime.Version()}, nil
+ }
+
+ func transform(ctx context.Context, client sdk.VariableClient, log
*slog.Logger) error {
+ val, err := client.GetVariable(ctx, "my_variable")
+ if err != nil {
+ return err
+ }
+ log.Info("obtained variable", "my_variable", val)
+ return nil
+ }
+
+.. note::
+
+ As with the other language SDKs, XCom *dependencies* are declared in the
Python stub Dag (they define task
+ order). The value must still be read explicitly in Go via
``client.GetXCom``, and produced either by the
+ task's ``(any, error)`` return value or by ``client.PushXCom``.
+
+Go entry point
+~~~~~~~~~~~~~~~
+
+Implement ``bundlev1.BundleProvider`` to register your Dags and tasks;
``main`` is one line. ``RegisterDags``
+is the single source of truth for which ``dag_id`` and task names this bundle
can run, so the generated
+manifest can never drift from what the binary actually executes.
+
+.. code-block:: go
+
+ import (
+ "log"
+
+ v1 "github.com/apache/airflow/go-sdk/bundle/bundlev1"
+ "github.com/apache/airflow/go-sdk/bundle/bundlev1/bundlev1server"
+ )
+
+ type myBundle struct{}
+
+ var _ v1.BundleProvider = (*myBundle)(nil)
+
+ func (m *myBundle) GetBundleVersion() v1.BundleInfo {
+ return v1.BundleInfo{Name: bundleName, Version: &bundleVersion}
+ }
+
+ func (m *myBundle) RegisterDags(dagbag v1.Registry) error {
+ simpleDag := dagbag.AddDag("simple_dag") // must match the Python
dag_id
+ simpleDag.AddTask(extract) // task_id is taken from the
function name
+ simpleDag.AddTask(transform)
+ return nil
+ }
+
+ func main() {
+ if err := bundlev1server.Serve(&myBundle{}); err != nil {
+ log.Fatal(err)
+ }
+ }
+
+The ``dag_id`` passed to ``AddDag`` must match the ``dag_id`` of the Python
Dag, and each registered task's
+name must match a ``@task.stub`` function in that Dag.
+
+Coordinator configuration
+~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+Register the coordinator and route the queue to it under ``[sdk]`` in
``airflow.cfg`` (or the equivalent
+``AIRFLOW__SDK__*`` environment variables):
+
+.. code-block:: ini
+
+ [sdk]
+ coordinators = {
+ "go": {
+ "classpath":
"airflow.sdk.coordinators.executable.ExecutableCoordinator",
+ "kwargs": {"executables_root": ["~/airflow/executable-bundles"]}
+ }
+ }
+ queue_to_coordinator = {"golang": "go"}
+
+``executables_root`` is one or more directories the coordinator scans for
bundles; ``queue_to_coordinator``
+routes stub tasks with ``queue="golang"`` to this Go coordinator. See
:ref:`go-sdk/coordinator-config` for
+the full list of accepted ``kwargs``.
+
+There is no separate Go worker to run: the Airflow worker forks the bundle
binary once per task instance.
+
+.. note::
+
+ The coordinator is part of the Airflow worker, so the ``[sdk]`` config (and
the bundle files in
+ ``executables_root``) only need to be present wherever tasks actually
execute. With ``CeleryExecutor``,
+ setting it on the Celery workers is sufficient. With ``LocalExecutor``,
tasks run inside the scheduler
+ process, so it must be set where the scheduler can read it. The API server
and Dag processor do not need
+ it.
+
+Writing tasks
+-------------
+
+The runtime inspects a task function's signature and injects arguments by
type, so you only declare the
+parameters your task actually needs:
+
+.. list-table::
+ :header-rows: 1
+ :widths: 35 65
+
+ * - Parameter type
+ - Injected value
+ * - ``context.Context``
+ - Cancellation/deadline context for the task. Honour it for long-running
work.
+ * - ``*slog.Logger``
+ - A logger whose output is routed back to the Airflow task log.
+ * - ``sdk.Client`` (or a narrower interface)
+ - A client for Airflow Variables, Connections, and XCom.
+
+An optional ``(any, error)`` return value becomes the task's ``return_value``
XCom. A non-nil ``error`` (or a
+panic, which the runtime recovers) marks the task instance failed in Airflow,
triggering retries if
+configured on the stub.
+
+Requesting the narrowest interface you need (for example
``sdk.VariableClient`` instead of the full
+``sdk.Client``) documents which Airflow features the task touches and makes
unit testing easier, because you
+can pass a fake in tests.
+
+.. _go-sdk/client:
+
+The ``sdk.Client`` surface
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+``sdk.Client`` composes three smaller interfaces, so a task can depend on just
one:
+
+* ``VariableClient`` - ``GetVariable`` (returns the Variable as a string) and
``UnmarshalJSONVariable``
+ (decodes a JSON Variable into a pointer you provide).
+* ``ConnectionClient`` - ``GetConnection``, returning a ``Connection`` with
fields ``ID``, ``Type``,
+ ``Host``, ``Port``, ``Login``, ``Password``, ``Path``, ``Extra`` (a
``map[string]any``), plus a
+ ``GetURI()`` helper.
+* ``XComClient`` - ``GetXCom`` to read an upstream task's XCom and
``PushXCom`` to publish one.
+
+``GetXCom`` returns the stored value as an ``any``; see :ref:`go-sdk/types`
for how the stored JSON maps to
+Go types.
+
+Not-found lookups return sentinel errors - ``VariableNotFound``,
``ConnectionNotFound``, ``XComNotFound`` -
+so you can branch on a missing value with ``errors.Is`` rather than parsing an
error string.
+
+.. _go-sdk/types:
+
+XCom type mapping
+-----------------
+
+XCom values are stored as JSON in Airflow's metadata database. The table below
shows how those JSON types
+surface as Go values when read back via ``GetXCom``.
+
+.. list-table::
+ :header-rows: 1
+ :widths: 25 35 40
+
+ * - Python type
+ - JSON
+ - Go type (from ``GetXCom``)
+ * - ``int``
+ - number (integer)
+ - numeric (see note)
+ * - ``float``
+ - number (decimal)
+ - ``float64``
+ * - ``str``
+ - string
+ - ``string``
+ * - ``bool``
+ - boolean
+ - ``bool``
+ * - ``None``
+ - null
+ - ``nil``
+ * - ``list``
+ - array
+ - ``[]any``
+ * - ``dict``
+ - object
+ - ``map[string]any``
+
+.. note::
+
+ ``GetXCom`` returns the value exactly as decoded from the transport; there
is no typed XCom
+ deserialization layer yet. The concrete type of a *numeric* value therefore
depends on the deployment
+ mode. Over the Execution API (the Edge Worker path) numbers are decoded with
``encoding/json``, so every
+ number - integer or not - arrives as ``float64``. In coordinator mode the
Python supervisor re-encodes the
+ value as msgpack, so a whole number arrives as a Go integer type (whose
width depends on the value) and
+ only a non-integer as ``float64``. Do not assume a fixed numeric type:
type-switch over the numeric types
+ you expect, or round-trip the value through ``json.Marshal`` /
``json.Unmarshal`` into a typed Go value.
+
+.. _go-sdk/build:
+
+Building and packaging
+----------------------
+
+A plain ``go build`` produces a runnable binary, but a *deployable* bundle
(binary + embedded source +
+manifest) must be produced with ``airflow-go-pack``. The packer compiles the
bundle and appends the embedded
+metadata footer, so the coordinator can read its ``dag_id`` s without
executing the binary, producing a
Review Comment:
Inline code literals shouldn’t be separated from their plural suffix;
``dag_id`` s will render with an extra space in the built docs.
--
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]