Reputation: 1
I am trying to stream data from PubSub to BigQuery but getting this error in the log of Dataflow.
Error message from worker: java.lang.IllegalArgumentException: Table reference is not in [project_id]:[dataset_id].[table_id] format: round-legacy-334414:users.user_list
I tried the below BigQuery output table locations and still got the above error.
round-legacy-334414:users.user_list
[round-legacy-334414]:[users].[user_list]
Upvotes: 0
Views: 865
Reputation: 11
Yes, IAM permission issue.
I got a similar error another Dataflow job, given bigquery admin role and tried again, the job is successful.
Upvotes: 0