Azure Functions Go Worker

The azure-functions-golang-worker repository provides the SDK and worker implementation to run Go (Golang) applications natively on Azure Functions. This allows developers to write serverless applications using familiar idiomatic Go structures, such as standard net/http handlers and structured types, while deeply integrating with Azure Function's bindings and trigger ecosystem.
Features
- Native Go Feel: Use standard
http.ResponseWriter and *http.Request for HTTP APIs.
- Worker-driven Indexing: No need to manually author
function.json files. Define your triggers and bindings directly in Go code using a fluent builder API.
- First-Class Performance: Runs in an out-of-process model utilizing gRPC for highly performant bidirectional communication with the Azure Functions host.
- Rich Bindings: Built-in reflection to map Azure bindings (like blobs, queues, CosmosDB) into strictly typed Go pointers and structs.
Getting Started
Prerequisites
# Install the specialized core tools to run locally
npm i -g @gaaguiar/azure-functions-core-tools
Writing Your First Function
Initialize a standard Go module for your project:
mkdir my-go-func
cd my-go-func
go mod init myapp
go get github.com/azure/azure-functions-golang-worker
go mod tidy
Create a main.go file:
package main
import (
"fmt"
"net/http"
"github.com/azure/azure-functions-golang-worker/sdk"
"github.com/azure/azure-functions-golang-worker/worker"
)
func main() {
app := sdk.FunctionApp()
// Register an HTTP trigger using familiar types
app.HTTP("hello", hello).Methods("GET", "POST").Auth("anonymous")
// Start the worker
worker.Start(app)
}
func hello(w http.ResponseWriter, r *http.Request) {
name := r.URL.Query().Get("name")
if name == "" {
name = "Azure"
}
fmt.Fprintf(w, "Hello, %s! Welcome to Go on Azure Functions.", name)
}
Run the application locally using the Core Tools:
func start
Note: func start will automatically compile and build your Go application before starting the local Azure Functions host.
Examples & Samples
For more advanced scenarios involving Azure storage blobs, events grids, Cosmos DB, and testing strategies, please visit the samples/ directory.
Trigger Model: Core Triggers vs Extension Triggers
The Go Worker organizes triggers into two tiers based on their dependency requirements:
Core Triggers (sdk/)
HTTP, Timer, CosmosDB, ServiceBus, EventHub, EventGrid
These triggers receive data inline via gRPC — the host serializes the trigger payload (JSON documents, messages, events) into the InvocationRequest and the worker deserializes it into typed Go structs. They have:
- Typed handler signatures — e.g.,
func(context.Context, []bindings.CosmosDocument) error
- Zero external dependencies — only
encoding/json needed for deserialization
- Bounded payloads — change feed docs, queue messages, and events are discrete, size-limited objects
// Core trigger — typed, no extra imports needed
app.CosmosDB("processChanges", handler).
Database("mydb").Container("mycontainer").Connection("CosmosDBConnection")
Extension Triggers (triggers/)
Blob (and future Queue, Table, etc.)
These triggers provide an authenticated Azure SDK client instead of raw data. The host sends only metadata (container, blob path); the worker constructs a client scoped to the specific resource. They have:
- SDK client injection — handler receives e.g.,
*blob.Client ready to use
- Isolated dependencies —
azblob, azidentity etc. live in triggers/blob/, activated via blank import
- Streaming support — user can
DownloadStream() without buffering GBs through gRPC
import _ "github.com/azure/azure-functions-golang-worker/triggers/blob" // activate extension
// Extension trigger — handler gets a live SDK client
app.Blob("processBlobTrigger", handler).
Path("samples-workitems/{name}").Connection("AzureWebJobsStorage")
When is each tier used?
| Criterion |
Core (data passthrough) |
Extension (SDK client) |
| Payload size |
Bounded (KB–low MB) |
Potentially unbounded (GBs) |
| External SDK needed? |
No |
Yes |
| Data in gRPC message? |
Yes — already serialized by host |
No — only metadata |
| Streaming? |
Not needed |
Essential |
| Handler type |
Typed alias (CosmosDBHandler) |
any (validated via reflection) |
This is similar to the .NET worker extensions model (Microsoft.Azure.Functions.Worker.Extensions.*) but avoids over-abstracting core triggers that don't need external dependencies.
Custom Handlers vs First-Class Go Worker
Historically, Go was only supported on Azure Functions via "Custom Handlers" (an HTTP-based proxy pattern). This new natively supported Go Worker provides a richer experience:
- gRPC Integration: The worker connects directly to the host process via an
EventStream, reducing HTTP proxy overhead.
- First-class Bindings: You no longer need to parse raw HTTP headers to read trigger/binding data; the gRPC worker deserializes the metadata and binding data directly into your Go objects.
- No configurations: Function endpoints are discovered cleanly in code without
function.json.
Telemetry & Observability
The Azure Functions Go worker contains built-in observability features that integrate automatically with Azure Application Insights. See the developer manual for details.
Contributing
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
Trademarks
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.