title: “Go SDK Exits Experimental in Apache Beam 2.33.0” date: 2021-11-04 00:00:01 -0800 categories:
Apache Beam’s latest release, version 2.33.0, is the first official release of the long experimental Go SDK. Built with the Go Programming Language, the Go SDK joins the Java and Python SDKs as the third implementation of the Beam programming model.
New users of the Go SDK can start using it in their Go programs by importing the main beam package:
import "github.com/apache/beam/sdks/v2/go/pkg/beam"
The next run of go mod tidy will fetch the latest stable version of the module. Alternatively executing go get github.com/apache/beam/sdks/v2/go/pkg/beam will download it to the local module cache immeadiately, and add it to your go.mod file.
Existing users of the experimental Go SDK need to update to new v2 import paths to start using the latest versions of the SDK. This can be done by adding v2 to the import paths, changing github.com/apache/beam/sdks/go/... to github.com/apache/beam/sdks/v2/go/... where applicable, and then running go mod tidy.
Further documentation on using the SDK is available in the Beam Programming Guide, and in the package Go Doc.
At time of writing, the Go SDK is currently “Batteries Not Included”. This means that there are gaps or edge cases in supported IOs and transforms. That said, the core of the SDK enables a great deal of the Beam Model for custom user use, supporting the following features:
Upcoming feature roadmap, and known issues are discussed below. In particular, we plan to support a much richer set of IO connectors via Beam's cross-language capabilities.
With this release, the Go SDK now uses Go Modules for dependency management. This makes it so users, SDK authors, and the testing infrastructure can all rely on the same versions of dependencies, making builds reproducible. This also makes validating Go SDK Release Candidates simple.
Versioned SDK worker containers are now built and published, with the SDK using matching tagged versions. User jobs no longer need to specify a container to use, except when using custom containers.
The Go SDK will largely follow suit with the Go notion of compatibility. Some concessions are made to keep all SDKs together on the same release cycle.
The SDK will be tested at a minimum Go Programming Language version of 1.16, and use available language features and standard library packages accordingly. To maintain a broad compatibility, the Go SDK will not require the latest major version of Go. We expect to follow the 2nd newest supported release of the language, with a possible exception when Go 1.18 is released, in order to begin experimenting with Go Generics in the SDK. Release notes will call out when the minimum version of the language changes.
The primary user packages will avoid changing in backwards incompatible ways for core features. This is to be inline with Go's notion of the import compatibility rule.
If an old package and a new package have the same import path, the new package must be backwards compatible with the old package.
Exceptions to this policy are around newer, experimental, or in development features and are subject to change. Such features will have a doc comment noting the experimental status. Major changes will be mentioned in the release notes. For example, using beam.WindowInto with Triggers is currently experimental and may have the API changed in a future release.
Primary user packages include:
github.com/apache/beam/sdks/v2/go/pkg/beam.../transforms, .../io, .../runners, and .../testing.Generally, packages in the module other than the primary user packages are for framework use and are at risk of changing.
top.SmallestPerKey was broken BEAM-12946beam.TryCrossLanguage API didn't match non-Try version BEAM-9918beam.TryCrossLanguageThe SDK roadmap has been updated. Ongoing focus is to bolster streaming focused features, improve existing connectors, and make connectors easier to implement.
In the nearer term this comes in the form of improvements to side inputs, and providing wrappers and improving ease-of-use for cross language transforms from Java.
We hope you find the SDK useful, and it's still early days. If you make something with the Go SDK, consider sharing it with us. And remember, contributions are always welcome.