I'm trying to use the AWS Glue connector to BigQuery following the tutorial in https://aws.amazon.com/blogs/big-data/migrating-data-from-google-bigquery-to-amazon-s3-using-aws-glue-custom-connectors/ but after following all steps I get a:
: java.lang.IllegalArgumentException: A project ID is required for this service but could not be determined from the builder or the environment. Please set a project ID using the builder.
The Python exception shows that:
Traceback (most recent call last):
File "/tmp/ETHBlockchainExport.py", line 20, in <module>
DataSource0 = glueContext.create_dynamic_frame.from_options(connection_type = "marketplace.spark", connection_options =
{
"parentProject": "MYGOOGLE_PROJECT_ID",
"connectionName": "BigQuery",
"table": "MYPROJECT.DATASET.TABLE"
}
So everything seems provided but still complains about Project Id. How can I provide that info to the connector?