You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by re...@apache.org on 2022/05/27 00:39:02 UTC

[beam] branch master updated (92b8dc75286 -> 25039a8aea8)

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

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


    from 92b8dc75286 [BEAM-14505] Add Dataflow streaming pipeline update support to the Go SDK (#17747)
     add c4af119545c DLQ for BQ Storage Api writes
     new 25039a8aea8 Merge pull request #17423: Handle invalid rows in the Storage Api sink

The 1 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       |   4 +-
 ...nfo.java => BigQueryStorageApiInsertError.java} |  39 +++++--
 .../BigQueryStorageApiInsertErrorCoder.java}       |  38 +++----
 .../io/gcp/bigquery/StorageApiConvertMessages.java |  64 ++++++++---
 .../bigquery/StorageApiDynamicDestinations.java    |   3 +
 .../StorageApiDynamicDestinationsBeamRow.java      |   6 +
 .../StorageApiDynamicDestinationsTableRow.java     |   6 +-
 .../beam/sdk/io/gcp/bigquery/StorageApiLoads.java  | 124 +++++++++++++++------
 .../sdk/io/gcp/bigquery/StreamingWriteTables.java  |   2 +
 .../io/gcp/bigquery/TableRowToStorageApiProto.java | 107 ++++++++++++++----
 .../beam/sdk/io/gcp/bigquery/TableSchemaCache.java |   1 +
 .../beam/sdk/io/gcp/bigquery/WriteResult.java      | 103 +++++++++++------
 .../sdk/io/gcp/bigquery/BigQueryIOWriteTest.java   |  94 +++++++++++++++-
 .../gcp/bigquery/TableRowToStorageApiProtoIT.java  |   1 -
 14 files changed, 454 insertions(+), 138 deletions(-)
 copy sdks/java/io/google-cloud-platform/src/main/java/org/apache/beam/sdk/io/gcp/bigquery/{TableRowInfo.java => BigQueryStorageApiInsertError.java} (56%)
 copy sdks/java/io/google-cloud-platform/src/main/java/org/apache/beam/sdk/io/gcp/{bigtable/BigtableWriteResultCoder.java => bigquery/BigQueryStorageApiInsertErrorCoder.java} (51%)


[beam] 01/01: Merge pull request #17423: Handle invalid rows in the Storage Api sink

Posted by re...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 25039a8aea8ad549e8ba9fdbfcd67c9f8fc2f9bf
Merge: 92b8dc75286 c4af119545c
Author: Reuven Lax <re...@google.com>
AuthorDate: Thu May 26 17:38:53 2022 -0700

    Merge pull request #17423: Handle invalid rows in the Storage Api sink

 .../beam/sdk/io/gcp/bigquery/BatchLoads.java       |   4 +-
 .../bigquery/BigQueryStorageApiInsertError.java    |  56 ++++++++++
 .../BigQueryStorageApiInsertErrorCoder.java        |  53 +++++++++
 .../io/gcp/bigquery/StorageApiConvertMessages.java |  64 ++++++++---
 .../bigquery/StorageApiDynamicDestinations.java    |   3 +
 .../StorageApiDynamicDestinationsBeamRow.java      |   6 +
 .../StorageApiDynamicDestinationsTableRow.java     |   6 +-
 .../beam/sdk/io/gcp/bigquery/StorageApiLoads.java  | 124 +++++++++++++++------
 .../sdk/io/gcp/bigquery/StreamingWriteTables.java  |   2 +
 .../io/gcp/bigquery/TableRowToStorageApiProto.java | 107 ++++++++++++++----
 .../beam/sdk/io/gcp/bigquery/TableSchemaCache.java |   1 +
 .../beam/sdk/io/gcp/bigquery/WriteResult.java      | 103 +++++++++++------
 .../sdk/io/gcp/bigquery/BigQueryIOWriteTest.java   |  94 +++++++++++++++-
 .../gcp/bigquery/TableRowToStorageApiProtoIT.java  |   1 -
 14 files changed, 513 insertions(+), 111 deletions(-)