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 2021/10/01 03:52:09 UTC

[beam] tag nightly-master updated (6beeafff -> e79750d)

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

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


*** WARNING: tag nightly-master was modified! ***

    from 6beeafff (commit)
      to e79750d  (commit)
    from 6beeafff Merge pull request #15621: [BEAM-12356] Fixed last non-cached usage of DatasetService in BigQuery WriteTables
     add 7d847cb  [BEAM-12951]: Create initial structure for Playground application
     add 60c15a2  Merge pull request #15578 from [BEAM-12951] Create initial structure for Apache Beam Playground application
     add e5ac1ae  Update Beam glossary (#15619)
     add 5cb9635  Fix BEAM-12984
     add e525449  Merge pull request #15623 from rohdesamuel/BEAM-12984
     add e48fa2f  [BEAM-12908] Change to use PubsubSignal for information propagation so this works on dataflow
     add 72595b9  Merge pull request #15607 from dpcollins-google/pubsub-signal-psl-it
     add cf78f3b  Preserve more types in transform replacement.
     add c79fb19  Update test to reflect preserved type hint.
     add 351f5e7  Merge pull request #15620 Preserve more types in transform replacement.
     add 3c564f8  [BEAM-11985] Python Bigtable - Implement IO Request Count metrics (#15562)
     add dc4a6a9  [BEAM-9918] Make TryCrossLanguage match non Try API (#15633)
     add e79750d  [BEAM-12957] Add support for pyarrow 5.x (#15588)

No new revisions were added by this update.

Summary of changes:
 CHANGES.md                                         |   1 +
 build.gradle.kts                                   |   9 +-
 playground/backend/{test => }/.gitkeep             |   0
 playground/frontend/.metadata                      |  10 ++
 playground/frontend/README.md                      |  47 ++++++
 playground/frontend/analysis_options.yaml          |  46 ++++++
 .../frontend/lib/main.dart                         |  49 +++---
 playground/frontend/pubspec.lock                   | 167 +++++++++++++++++++++
 playground/frontend/pubspec.yaml                   | 106 +++++++++++++
 .../frontend/test/widget_test.dart                 |  22 ++-
 playground/frontend/web/favicon.png                | Bin 0 -> 917 bytes
 playground/frontend/web/icons/Icon-192.png         | Bin 0 -> 5292 bytes
 playground/frontend/web/icons/Icon-512.png         | Bin 0 -> 8252 bytes
 .../frontend/web/icons/Icon-maskable-192.png       | Bin 0 -> 5594 bytes
 .../frontend/web/icons/Icon-maskable-512.png       | Bin 0 -> 20998 bytes
 playground/frontend/web/index.html                 | 120 +++++++++++++++
 playground/frontend/web/manifest.json              |  35 +++++
 sdks/go/pkg/beam/xlang.go                          |  42 ++++--
 .../beam/sdk/io/gcp/pubsublite/ReadWriteIT.java    |  88 ++++-------
 .../examples/cookbook/bigtableio_it_test.py        |   4 +-
 sdks/python/apache_beam/internal/metrics/metric.py |  40 +++++
 sdks/python/apache_beam/io/gcp/bigtableio.py       |  58 ++++++-
 sdks/python/apache_beam/io/gcp/bigtableio_test.py  | 137 +++++++++++++++++
 .../apache_beam/io/gcp/resource_identifiers.py     |   5 +
 .../python/apache_beam/metrics/monitoring_infos.py |   5 +
 sdks/python/apache_beam/pipeline.py                |   6 +
 sdks/python/apache_beam/pipeline_test.py           |   2 +-
 .../runners/interactive/pipeline_fragment.py       |  12 ++
 .../runners/interactive/pipeline_fragment_test.py  |  35 +++++
 sdks/python/setup.py                               |   2 +-
 sdks/python/test-suites/tox/common.gradle          |   4 +-
 sdks/python/test-suites/tox/py38/build.gradle      |  16 +-
 sdks/python/tox.ini                                |   6 +-
 .../www/site/content/en/documentation/glossary.md  |  58 ++++---
 34 files changed, 981 insertions(+), 151 deletions(-)
 copy playground/backend/{test => }/.gitkeep (100%)
 create mode 100644 playground/frontend/.metadata
 create mode 100644 playground/frontend/README.md
 create mode 100644 playground/frontend/analysis_options.yaml
 copy sdks/java/extensions/sql/src/main/java/org/apache/beam/sdk/extensions/sql/meta/provider/InMemoryMetaTableProvider.java => playground/frontend/lib/main.dart (54%)
 create mode 100644 playground/frontend/pubspec.lock
 create mode 100644 playground/frontend/pubspec.yaml
 copy runners/jet/src/main/java/org/apache/beam/runners/jet/metrics/AbstractMetric.java => playground/frontend/test/widget_test.dart (69%)
 create mode 100644 playground/frontend/web/favicon.png
 create mode 100644 playground/frontend/web/icons/Icon-192.png
 create mode 100644 playground/frontend/web/icons/Icon-512.png
 create mode 100644 playground/frontend/web/icons/Icon-maskable-192.png
 create mode 100644 playground/frontend/web/icons/Icon-maskable-512.png
 create mode 100644 playground/frontend/web/index.html
 create mode 100644 playground/frontend/web/manifest.json
 create mode 100644 sdks/python/apache_beam/io/gcp/bigtableio_test.py