You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by gi...@apache.org on 2022/11/09 04:54:25 UTC

[beam] branch nightly-refs/heads/master updated (62d8bdc604d -> 73142bad247)

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

github-bot pushed a change to branch nightly-refs/heads/master
in repository https://gitbox.apache.org/repos/asf/beam.git


    from 62d8bdc604d Merge pull request #23789 Better surfacing of Scala support via Scio.
     add 8cf2a63cc25 Update release notes. (#23986)
     add a6a9b23fd5b [Go] Pipeline Resource Hints (#23990)
     add 7dac3f5ef40 [#21250] Trivial removal of loop over something that always has one element (#24014)
     add f0a6ff46619 Bump cloud.google.com/go/bigtable from 1.16.0 to 1.17.0 in /sdks (#24027)
     add bf621ccb880 Editorial review of the ML base API descriptions (#24026)
     add b9ff75a18b4 Update my Twitter handle (#23653)
     add 708e05f0dc6 Retroactively announce Batched DoFn support in 2.42.0 Blog (#24011)
     add b9655e7de1a Bump cloud.google.com/go/storage from 1.27.0 to 1.28.0 in /sdks (#24028)
     add 8db8fae1730 [Go] Add pipeline resource hints to CHANGES.md (#24036)
     add 73142bad247 Handle Avro schema generation for logical data types in BigQueryAvroUtils (#23620): handle avro logical types for TableFieldSchema to Avro schema conversion

No new revisions were added by this update.

Summary of changes:
 CHANGES.md                                         |  20 +-
 .../beam/model/pipeline/v1/beam_runner_api.proto   |   6 +
 sdks/go.mod                                        |   5 +-
 sdks/go.sum                                        |   9 +-
 sdks/go/pkg/beam/core/runtime/graphx/translate.go  |  29 ++-
 sdks/go/pkg/beam/core/runtime/options.go           |   2 +-
 sdks/go/pkg/beam/options/jobopts/options.go        |  56 +++++
 sdks/go/pkg/beam/options/jobopts/options_test.go   |  50 +++-
 sdks/go/pkg/beam/options/jobopts/stringSlice.go    |   8 +-
 sdks/go/pkg/beam/options/resource/hint.go          | 196 +++++++++++++++
 sdks/go/pkg/beam/options/resource/hint_test.go     | 272 +++++++++++++++++++++
 sdks/go/pkg/beam/runners/dataflow/dataflow.go      |   5 +-
 sdks/go/pkg/beam/runners/universal/universal.go    |   5 +-
 .../apache/beam/fn/harness/FnApiDoFnRunner.java    | 118 ++++-----
 .../sdk/io/gcp/bigquery/BigQueryAvroUtils.java     |  31 ++-
 .../sdk/io/gcp/bigquery/BigQueryAvroUtilsTest.java |  20 +-
 .../sdk/io/gcp/bigquery/BigQueryIOReadTest.java    | 162 +++++++++---
 sdks/python/apache_beam/ml/inference/base.py       |  56 ++---
 website/www/site/content/en/blog/beam-2.42.0.md    |   3 +
 website/www/site/data/authors.yml                  |   1 +
 20 files changed, 895 insertions(+), 159 deletions(-)
 create mode 100644 sdks/go/pkg/beam/options/resource/hint.go
 create mode 100644 sdks/go/pkg/beam/options/resource/hint_test.go