You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by lo...@apache.org on 2022/05/05 22:33:57 UTC

[beam] branch master updated (fa01615e520 -> 8db69a241c1)

This is an automated email from the ASF dual-hosted git repository.

lostluck pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


    from fa01615e520 Merge pull request #17359: [BEAM-14303] Add a way to exclude output timestamp watermark holds
     add 8db69a241c1 [BEAM-14347] Allow users to optimize DoFn execution with a single generic registration function (#17429)

No new revisions were added by this update.

Summary of changes:
 .github/codecov.yml                                |    1 +
 .github/workflows/go_tests.yml                     |    6 +-
 .github/workflows/local_env_tests.yml              |    4 +-
 .github/workflows/python_tests.yml                 |    2 +-
 CHANGES.md                                         |    2 +-
 .../org/apache/beam/gradle/BeamModulePlugin.groovy |    2 +-
 playground/README.md                               |    2 +-
 sdks/go.mod                                        |   48 +-
 sdks/go/cmd/specialize/main.go                     |  106 +-
 sdks/go/cmd/specialize/main_test.go                |  107 +
 sdks/go/pkg/beam/registration/doc.go               |   30 +
 .../example_registration_test.go}                  |   39 +-
 sdks/go/pkg/beam/registration/registration.go      | 7054 ++++++++++++++++++++
 sdks/go/pkg/beam/registration/registration.tmpl    |  265 +
 sdks/go/pkg/beam/registration/registration_test.go |  214 +
 sdks/go/run_with_go_version.sh                     |    2 +-
 .../content/en/documentation/programming-guide.md  |    2 +-
 .../site/content/en/get-started/quickstart-go.md   |    2 +-
 18 files changed, 7845 insertions(+), 43 deletions(-)
 create mode 100644 sdks/go/cmd/specialize/main_test.go
 create mode 100644 sdks/go/pkg/beam/registration/doc.go
 copy sdks/go/pkg/beam/{core/runtime/exec/discard.go => registration/example_registration_test.go} (52%)
 create mode 100644 sdks/go/pkg/beam/registration/registration.go
 create mode 100644 sdks/go/pkg/beam/registration/registration.tmpl
 create mode 100644 sdks/go/pkg/beam/registration/registration_test.go