You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by pa...@apache.org on 2020/07/31 01:01:51 UTC

[beam] branch master updated (965eb65 -> 752bdfd)

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

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


    from 965eb65  [BEAM-10559] Add apache_beam.examples.sql_taxi (#12399)
     new 9af5435  Standardizing BigQuery job names in Beam Python and Java SDKs
     new c2fb77d  Naming BQ Copy jobs consistently in Python
     new a6b88d2  Applying fixes from comments.
     new 752bdfd  Merge pull request #12082 from Standardizing BigQuery job names in Beam Python and Java SDKs

The 28147 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../beam/sdk/io/gcp/bigquery/BatchLoads.java       |  26 ++---
 .../beam/sdk/io/gcp/bigquery/BigQueryHelpers.java  |  36 -------
 .../beam/sdk/io/gcp/bigquery/BigQueryIO.java       |  28 ++++-
 .../sdk/io/gcp/bigquery/BigQueryQueryHelper.java   |  10 +-
 .../io/gcp/bigquery/BigQueryQuerySourceDef.java    |   7 +-
 .../io/gcp/bigquery/BigQueryResourceNaming.java    | 113 +++++++++++++++++++++
 .../sdk/io/gcp/bigquery/BigQuerySourceBase.java    |   6 +-
 .../beam/sdk/io/gcp/bigquery/WriteRename.java      |   2 +-
 .../beam/sdk/io/gcp/bigquery/WriteTables.java      |   2 +-
 .../sdk/io/gcp/bigquery/BigQueryHelpersTest.java   |   4 +-
 .../sdk/io/gcp/bigquery/BigQueryIOReadTest.java    |   6 +-
 .../gcp/bigquery/BigQueryIOStorageQueryTest.java   |  10 +-
 .../sdk/io/gcp/bigquery/BigQueryIOWriteTest.java   |   3 +-
 .../gcp/bigquery/BigQueryResourceNamingTest.java   |  73 +++++++++++++
 sdks/python/apache_beam/io/gcp/bigquery.py         |  14 +++
 .../apache_beam/io/gcp/bigquery_file_loads.py      |  51 ++++++----
 sdks/python/apache_beam/io/gcp/bigquery_tools.py   |  18 ++++
 .../apache_beam/io/gcp/bigquery_tools_test.py      |  39 +++++++
 18 files changed, 351 insertions(+), 97 deletions(-)
 create mode 100644 sdks/java/io/google-cloud-platform/src/main/java/org/apache/beam/sdk/io/gcp/bigquery/BigQueryResourceNaming.java
 create mode 100644 sdks/java/io/google-cloud-platform/src/test/java/org/apache/beam/sdk/io/gcp/bigquery/BigQueryResourceNamingTest.java