I am trying to stream pub/sub messages into a BigQuery table with matching schema. I want to use GCP provided PubSubToBigQuery template to do this, but am unable to set it up successfully.
Here is what I have tried so far
I created a GCE instance with permissions to write to GS (useful link)
Clone GCP source from git
git clone https://github.com/GoogleCloudPlatform/DataflowTemplates
As specified here, ran:
mvn compile exec:java -Dexec.mainClass=com.google.cloud.teleport.templates.PubSubToBigQuery...
The process created all the jar files created in the
/staging
buckets. It was supposed to generate template information in/templates
bucket, but did not.
What am I missing here?