Merge pull request #12 from apache/dependabot/go_modules/github.com/apache/beam/sdks/v2-2.46.0

Bump github.com/apache/beam/sdks/v2 from 2.45.0 to 2.46.0
tree: ff3ab73e6bca9baa5a0a1c662fa3672f6f23ec28
  1. .github/
  2. .gitignore
  3. CONTRIBUTING.md
  4. go.mod
  5. go.sum
  6. LICENSE
  7. main.go
  8. main_test.go
  9. README.md
README.md

Apache Beam starter for Go

If you want to clone this repository to start your own project, you can choose the license you prefer and feel free to delete anything related to the license you are dropping.

Before you begin

Make sure you have a Go development environment ready. If you don't, you can follow the instructions in the Download and install page.

Running the pipeline

Running your pipeline in Go is as easy as running the script file directly.

# You can run the script file directly.
go run main.go

# To run passing command line arguments.
go run main.go --input-text="🎉"

# To run the tests.
go test ./...

Using other runners

To keep this template small, it only includes the Direct Runner.

For a comparison of what each runner currently supports, look at the Beam Capability Matrix.

To add a new runner, visit the runner's page for instructions on how to include it.

Contributing

Thank you for your interest in contributing! All contributions are welcome! 🎉🎊

Please refer to the CONTRIBUTING.md file for more information.

License

This software is distributed under the terms of both the MIT license and the Apache License (Version 2.0).

See LICENSE for details.