Skip to content

Commit

Permalink
Merge pull request #32362 from iht/fix_gcsio_options
Browse files Browse the repository at this point in the history
Fix using `GcsIO` from a `DoFn`in Python
  • Loading branch information
liferoad committed Aug 30, 2024
2 parents 322c47d + aac398d commit fd8d146
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions sdks/python/apache_beam/io/gcp/gcsio.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,10 +145,13 @@ def __init__(self, storage_client=None, pipeline_options=None):
pipeline_options = PipelineOptions.from_dictionary(pipeline_options)
if storage_client is None:
storage_client = create_storage_client(pipeline_options)
self.enable_read_bucket_metric = pipeline_options.get_all_options(
)['enable_bucket_read_metric_counter']
self.enable_write_bucket_metric = pipeline_options.get_all_options(
)['enable_bucket_write_metric_counter']

google_cloud_options = pipeline_options.view_as(GoogleCloudOptions)
self.enable_read_bucket_metric = getattr(
google_cloud_options, 'enable_bucket_read_metric_counter', False)
self.enable_write_bucket_metric = getattr(
google_cloud_options, 'enable_bucket_write_metric_counter', False)

self.client = storage_client
self._rewrite_cb = None
self.bucket_to_project_number = {}
Expand Down

0 comments on commit fd8d146

Please sign in to comment.