Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ pipeline:
write_disposition: "WRITE_APPEND"
num_streams: 1

options:
temp_location: "gs://apache-beam-testing/temp"


# Expected:
# Row(line='Fool\tThou shouldst not have been old till thou hadst')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ pipeline:
config:
path: "gs://my-bucket/yaml-123/writingToBigQueryErrors.json"


options:
temp_location: "gs://apache-beam-testing/temp"

# Expected:
# Row(shipment_id='S1', customer_id='C1', shipment_date='2023-05-01', shipment_cost=150.0, customer_name='Alice', customer_email='[email protected]')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ pipeline:
config:
path: "gs://my-bucket/yaml-123/writingToBigQueryErrors.json"

options:
temp_location: "gs://apache-beam-testing/temp"

# Expected:
# Row(shipment_id='S1', customer_id='C1', shipment_date='2023-05-01', shipment_cost=150.0, customer_name='Alice', customer_email='[email protected]')
# Row(shipment_id='S2', customer_id='C2', shipment_date='2023-06-12', shipment_cost=300.0, customer_name='Bob', customer_email='[email protected]')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ pipeline:
config:
path: "gs://my-bucket/yaml-123/writingToBigQueryErrors.json"

options:
temp_location: "gs://apache-beam-testing/temp"

# Expected:
# Row(shipment_id='S1', customer_id='C1', shipment_date='2023-05-01', shipment_cost=150.0, customer_name='Alice', customer_email='[email protected]')
# Row(shipment_id='S2', customer_id='C2', shipment_date='2023-06-12', shipment_cost=300.0, customer_name='Bob', customer_email='[email protected]')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ pipeline:
config:
path: "gs://my-bucket/yaml-123/writingToBigQueryErrors.json"

options:
temp_location: "gs://apache-beam-testing/temp"

# Expected:
# Row(shipment_id='S1', customer_id='C1', shipment_date='2023-05-01', shipment_cost=150.0, customer_name='Alice', customer_email='[email protected]')
# Row(shipment_id='S2', customer_id='C2', shipment_date='2023-06-12', shipment_cost=300.0, customer_name='Bob', customer_email='[email protected]')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ pipeline:
write_disposition: "WRITE_APPEND"
num_streams: 1

options:
temp_location: "gs://apache-beam-testing/temp"

# Expected:
# Row(shipment_id='S1', customer_id='C1', shipment_date='2023-05-01', shipment_cost=150.0, customer_name='Alice', customer_email='[email protected]')
# Row(shipment_id='S2', customer_id='C2', shipment_date='2023-06-12', shipment_cost=300.0, customer_name='Bob', customer_email='[email protected]')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ pipeline:
config:
path: "gs://my-bucket/yaml-123/writingToBigQueryErrors.json"

options:
temp_location: "gs://apache-beam-testing/temp"

# Expected:
# Row(shipment_id='S1', customer_id='C1', shipment_date='2023-05-01', shipment_cost=150.0, customer_name='Alice', customer_email='[email protected]')
# Row(shipment_id='S2', customer_id='C2', shipment_date='2023-06-12', shipment_cost=300.0, customer_name='Bob', customer_email='[email protected]')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ pipeline:

options:
yaml_experimental_features: [ 'ML' ]
temp_location: "gs://apache-beam-testing/temp"

# Expected:
# Row(id=1, date='2024-10-01', time='12:00:00', level='INFO', process='Main', component='ComponentA', content='System started successfully', embedding=[0.13483997249264842, 0.26967994498529685, 0.40451991747794525, 0.5393598899705937, 0.674199862463242])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,9 @@ pipelines:
- type: WriteToBigQuery
config:
table: "{BQ_TABLE_1}"

options:
project: "apache-beam-testing"
temp_location: "{TEMP_DIR_0}"
# New read from BQ to verify row restriction with nullable field and filter
# out nullable record
- pipeline:
Expand Down
Loading