pandasanjay commented on PR #35197: URL: https://github.com/apache/beam/pull/35197#issuecomment-2979095438
Looks like there is a need for a BQ table to make the examples pipeline to pass.  project_id = "apache-beam-testing" dataset = "beam-test" table_name = "bigquery-enrichment-test-products" -- BigQuery DDL for enrichment_with_bigquery_storage_basic CREATE TABLE `apache-beam-testing.beam-test.bigquery-enrichment-test-products` ( id INT64, product_name STRING, category STRING, unit_price FLOAT64 ); INSERT INTO `apache-beam-testing.beam-test.bigquery-enrichment-test-products` (id, product_name, category, unit_price) VALUES (101, 'Laptop', 'Electronics', 999.99), (102, 'Desk Chair', 'Furniture', 199.99), (103, 'Monitor', 'Electronics', 299.99); If this can be configured in any config in code, please let me know. @damccorm Could you please help here. Thanks :) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@beam.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org