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 2020/08/25 02:54:04 UTC

[beam] tag nightly-master updated (4172ce2 -> a99c682)

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 4172ce2  (commit)
      to a99c682  (commit)
    from 4172ce2  Merge pull request #12653 from [BEAM-10758] Centralized Glob Translation Method
     add e164d17  [BEAM-10682] Add workflow to run Java tests on Linux/Windows/Mac
     add 094d06c  Merge pull request #12541: [BEAM-10682] Add workflow to run Java tests on Linux/Windows/Mac
     add c168c60  Silence red PYTHONPATH warning from tox
     add 3add33e  Merge pull request #12602: Silence red PYTHONPATH warning from tox
     add c815e8e  [BEAM-10524] JSON decoder for ReadFromBigQuery supports repeatable fields
     add 9e5c5b5  Merge pull request #12671: [BEAM-10524] JSON decoder for ReadFromBigQuery supports repeatable fields
     add da91c4a  Merge pull request #12415 from [BEAM-10603] Add the RecordingManager and associated classes.
     add 3e80a21  Propagate BigQuery streaming insert throttled time to Dataflow worker in Python SDK
     add a99c682  Merge pull request #12663 from [BEAM-10597] Propagate BigQuery streaming insert throttled time to Dataflow worker in Python SDK

No new revisions were added by this update.

Summary of changes:
 .github/PULL_REQUEST_TEMPLATE.md                   |   1 +
 .github/workflows/cancel.yml                       |  24 +-
 .github/workflows/java_tests.yml                   | 162 ++++++++++
 CHANGES.md                                         |   1 +
 CI.md                                              |   9 +
 README.md                                          |   1 +
 .../org/apache/beam/gradle/BeamModulePlugin.groovy |  18 +-
 .../beam/sdk/io/DefaultFilenamePolicyTest.java     |   9 +
 .../org/apache/beam/sdk/io/FileBasedSinkTest.java  |   8 +
 .../org/apache/beam/sdk/io/FileSystemsTest.java    |   3 +
 .../apache/beam/sdk/io/LocalFileSystemTest.java    |   5 +
 .../apache/beam/sdk/io/LocalResourceIdTest.java    |  15 +
 .../org/apache/beam/sdk/io/TFRecordIOTest.java     |   4 +
 .../org/apache/beam/sdk/io/TextIOReadTest.java     |   4 +
 .../org/apache/beam/sdk/io/TextIOWriteTest.java    |   4 +
 .../sdk/options/PipelineOptionsFactoryTest.java    |   4 +
 .../sdk/options/ProxyInvocationHandlerTest.java    |   8 +
 .../beam/sdk/testing/FileChecksumMatcherTest.java  |   8 +
 .../util/FilePatternMatchingShardedFileTest.java   |   4 +
 .../beam/sdk/util/NumberedShardedFileTest.java     |   4 +
 sdks/python/apache_beam/io/gcp/bigquery.py         |  48 +--
 sdks/python/apache_beam/io/gcp/bigquery_test.py    |  51 +++-
 .../runners/interactive/interactive_runner.py      |   6 +-
 .../runners/interactive/recording_manager.py       | 331 +++++++++++++++++++++
 .../runners/interactive/recording_manager_test.py  | 305 +++++++++++++++++++
 sdks/python/tox.ini                                |   2 +
 26 files changed, 1001 insertions(+), 38 deletions(-)
 create mode 100644 .github/workflows/java_tests.yml
 create mode 100644 sdks/python/apache_beam/runners/interactive/recording_manager.py
 create mode 100644 sdks/python/apache_beam/runners/interactive/recording_manager_test.py