We have enabled GA 360 export to Bigquery that creates a new table everyday. For further processing we need the daily export to be transferred to IBM cloud object storage.
The easiest solution would be to use CLI -
a) bigquery export to Google cloud storage
bq extract
and then
b) move the extract to IBM object storage
gsutil cp
Couple of questions in this regard -
1) Can we skip the google cloud storage in between and is it possible to export directly to IBM bucket ?
2) We have not used Data flows before. Can this use case be a candidate for using Data flows ? Or what can be the easiest solution natively within GCP ?