Skip to content

Commit

Permalink
doc changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedabu98 committed Jan 20, 2023
1 parent 89bed0d commit 21adb6f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions sdks/python/apache_beam/io/gcp/bigquery.py
Original file line number Diff line number Diff line change
Expand Up @@ -2332,8 +2332,10 @@ class StorageWriteToBigQuery(PTransform):
use_at_least_once=False))
_ = (result['failed_rows_with_errors']
| beam.Map(lambda e: "failed row id: %s, error: %s" %
(e.failed_row.id, e.error_message)))
| 'Format errors' >> beam.Map(
lambda e: "failed row id: %s, error: %s" %
(e.failed_row.id, e.error_message))
| 'Write errors' >> beam.io.WriteToText(<output>)))
"""
URN = "beam:schematransform:org.apache.beam:bigquery_storage_write:v1"
Expand Down

0 comments on commit 21adb6f

Please sign in to comment.