Reputation: 119
Creating new job from template in Dataflow and than it comes to writing BigQuery table dataset ID I get this error:
Error: value must be of the form ".+:.+..+"
Try to google it, but didn't find anything, maybe it some new rule, because before I create the same way, but never get this error.
Maybe someone know what does it mean?
Upvotes: 0
Views: 123
Reputation: 6572
As proposed by @kiranMathew in the above comment, you have to propose the table with following convention :
project:dataset.table
The error message indicates this and you can't add special characters like +
.
Upvotes: 5