[!NOTE] This Golang SDK is under active development and is not ready for prime-time yet.
This README is primarily aimed at developers working on the Go-SDK itself. Users wishing to write Airflow tasks in Go should look at the reference docs, but those don't exist yet.
The Go SDK uses the Task Execution Interface (TEI or Task API) introduced in AIP-72 with Airflow 3.0.0.
The Task API however does not provide a means to get the ExecuteTaskWorkload to the go worker itself. For the short term, we make use of gopher-celery to get tasks from a Redis broker. Longer term we will likely need to stabilize the Edge Executor API and write a go client for that.
Since Go is a compiled language (putting aside projects such as YAEGI that allow go to be interpreted) all tasks must be a) compiled in to the binary, and b) “registered” inside the worker process in order to be executed.
The Go SDK currently works with Airflow‘s Celery Executor setup. Here’s how to get started:
Start Breeze with Celery executor:
breeze start-airflow --backend postgres --executor CeleryExecutor --load-example-dags
This will start:
http://localhost:28080localhost:26379We want to run the go workers instead of running the Celery ones. So in breeze, press CTRL+C to stop the Celery workers.
From the go-sdk directory, run the example worker:
go run ./example/main.go run \ --broker-address=localhost:26379 \ --queues default \ --execution-api-url http://localhost:28080/execution
Parameters explained:
--broker-address=localhost:26379: Redis broker address (default Celery broker)--queues default: Queue name where Celery enqueues tasks--execution-api-url http://localhost:28080/execution: Airflow's Task Execution API endpointYou can submit tasks through the Airflow UI for dag_id: tutorial_dag. The Go worker will pick up tasks from the Celery queue and execute them using the Task Execution Interface.
Observe the logs in the terminal where you run the test task.
This SDK currently will:
A non-exhaustive list of features we have yet to implement
This is more of an “it would be nice to have” than any plan or commitment, and a place to record ideas.
Support multiple versions by compiling tasks/bundles into plugins and make use of go-plugin (This is how Terraform providers work)
This would enable use to have executor code and task code in separate processes, and to be able to have a single worker execute different bundles/versions of tasks (i.e. we'd have a go executor process that launches versioned plugin bundles to actually execute the task)