I have a Google Dataflow batch job written in Java.
- This Java code accesses Bigquery and performs a few transformations and then outputs back into Bigquery.
- This code can access the Bigquery tables just fine.
But, when I choose a table that is backed by a federated source like google sheets it doesn't work.
It says no OAuth token with Google Drive scope found.
PipelineOptions options = PipelineOptionsFactory.fromArgs(args).withValidation().create();
Pipeline p1 = Pipeline.create(options);
Any ideas?