Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix bq write doc string #33800

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
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
4 changes: 2 additions & 2 deletions sdks/python/apache_beam/yaml/yaml_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def write_to_bigquery(

Defaults to `{BigQueryDisposition.CREATE_IF_NEEDED}`.

write_disposition (BigQueryDisposition): A string describing what happens
write_disposition (BigQueryDisposition): A string describing what happens
if the table has already some data. Possible values are:

* :attr:`{BigQueryDisposition.WRITE_TRUNCATE}`: delete existing rows.
Expand All @@ -159,7 +159,7 @@ def write_to_bigquery(

Defaults to `{BigQueryDisposition.WRITE_APPEND}`.

error_handling: If specified, should be a mapping giving an output into
error_handling: If specified, should be a mapping giving an output into
which to emit records that failed to bet written to BigQuery, as
described at https://beam.apache.org/documentation/sdks/yaml-errors/
Otherwise permanently failing records will cause pipeline failure.
Expand Down
Loading