amoghrajesh commented on code in PR #56975: URL: https://github.com/apache/airflow/pull/56975#discussion_r2450502379
########## go-sdk/README.md: ########## @@ -17,90 +17,107 @@ under the License. --> -# 🚧 Apache Airflow Go Task SDK 🚧 +# Apache Airflow Go Task SDK + +The Go SDK uses the Task Execution Interface (TEI or Task API) introduced in AIP-72 with Airflow 3.0.0 to give +Task functions written in Go full access to the Airflow "model", natively in go. + +The Task API however does not provide a means to get the `ExecuteTaskWorkload` to the go worker itself. For +that we use the Edge Executor API. +Longer term we will likely need to stabilize the Edge Executor API and add versioning to it. + +Since Go is a compiled language (putting aside projects such as [YAEGI](https://github.com/traefik/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. Review Comment: ```suggestion Since Go is a compiled language (putting aside projects such as [YAEGI](https://github.com/traefik/yaegi) that allow Go to be interpreted), all tasks must: 1. Be compiled into the binary, and 2. Be registered inside the worker process in order to be executed. ``` -- 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]
