Automate file upload from Google Cloud Storage to Bigquery

后端 未结 2 1324
暖寄归人
暖寄归人 2021-01-13 10:56

We have an automated FTP process set up which imports a data file into Google Cloud Storage daily.

I would like to set up a daily automated job that uploads this cs

2条回答
  •  死守一世寂寞
    2021-01-13 11:15

    Background Cloud Function with a Cloud Storage trigger is your best choice!

    You can set it to monitor specific bucket for new files and execute load script whenever trigger is fired

    Forgot to mention - Cloud Functions support (as of now) only node.js for scripting - which usually not a problem but just wanted to mention :o)

提交回复
热议问题