This is an automated email from the ASF dual-hosted git repository.
shunping pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new baa1751d837 comment out potential race condition until further
investigation in enrichment test (#36907)
baa1751d837 is described below
commit baa1751d837b26478f78925e764aa473c5f567ea
Author: Derrick Williams <[email protected]>
AuthorDate: Wed Nov 26 09:50:11 2025 -0500
comment out potential race condition until further investigation in
enrichment test (#36907)
---
.../yaml/extended_tests/data/enrichment.yaml | 78 +++++++++++-----------
1 file changed, 39 insertions(+), 39 deletions(-)
diff --git a/sdks/python/apache_beam/yaml/extended_tests/data/enrichment.yaml
b/sdks/python/apache_beam/yaml/extended_tests/data/enrichment.yaml
index c191b2c1fc9..f134133aa04 100644
--- a/sdks/python/apache_beam/yaml/extended_tests/data/enrichment.yaml
+++ b/sdks/python/apache_beam/yaml/extended_tests/data/enrichment.yaml
@@ -44,44 +44,44 @@ pipelines:
project: "apache-beam-testing"
temp_location: "{TEMP_DIR}"
- - pipeline:
- type: chain
- transforms:
- - type: Create
- name: Data
- config:
- elements:
- - {label: '11a', name: 'S1'}
- - {label: '37a', name: 'S2'}
- - {label: '389a', name: 'S3'}
- - type: Enrichment
- name: Enriched
- config:
- enrichment_handler: 'BigQuery'
- handler_config:
- project: apache-beam-testing
- table_name: "{BQ_TABLE}"
- fields: ['label']
- row_restriction_template: "label = '37a'"
- timeout: 30
+ # - pipeline:
+ # type: chain
+ # transforms:
+ # - type: Create
+ # name: Data
+ # config:
+ # elements:
+ # - {label: '11a', name: 'S1'}
+ # - {label: '37a', name: 'S2'}
+ # - {label: '389a', name: 'S3'}
+ # - type: Enrichment
+ # name: Enriched
+ # config:
+ # enrichment_handler: 'BigQuery'
+ # handler_config:
+ # project: apache-beam-testing
+ # table_name: "{BQ_TABLE}"
+ # fields: ['label']
+ # row_restriction_template: "label = '37a'"
+ # timeout: 30
- - type: MapToFields
- config:
- language: python
- fields:
- label:
- callable: 'lambda x: x.label'
- output_type: string
- rank:
- callable: 'lambda x: x.rank'
- output_type: integer
- name:
- callable: 'lambda x: x.name'
- output_type: string
+ # - type: MapToFields
+ # config:
+ # language: python
+ # fields:
+ # label:
+ # callable: 'lambda x: x.label'
+ # output_type: string
+ # rank:
+ # callable: 'lambda x: x.rank'
+ # output_type: integer
+ # name:
+ # callable: 'lambda x: x.name'
+ # output_type: string
- - type: AssertEqual
- config:
- elements:
- - {label: '37a', rank: 1, name: 'S2'}
- options:
- yaml_experimental_features: [ 'Enrichment' ]
\ No newline at end of file
+ # - type: AssertEqual
+ # config:
+ # elements:
+ # - {label: '37a', rank: 1, name: 'S2'}
+ # options:
+ # yaml_experimental_features: [ 'Enrichment' ]
\ No newline at end of file