Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion sdks/python/apache_beam/yaml/yaml_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,9 +165,12 @@ def write_to_bigquery(
Defaults to `{BigQueryDisposition.WRITE_APPEND}`.

error_handling: If specified, should be a mapping giving an output into
which to emit records that failed to bet written to BigQuery, as
which to emit records that failed to be written to BigQuery, as
described at https://beam.apache.org/documentation/sdks/yaml-errors/
Otherwise permanently failing records will cause pipeline failure.
Note: error_handling requires the Storage Write API method and is not
supported with File Loads (FILE_LOADS method). When error_handling is
specified, the transform will automatically use STORAGE_WRITE_API.
"""
class WriteToBigQueryHandlingErrors(beam.PTransform):
def default_label(self):
Expand Down
Loading