csv files are uploaded to cloud storage every 10 minutes, I want to upload them into bigquery every 10 minutes(batch load). How do I schedule this?
I know how to upload csv into bigquery one by one using both CLI and BQ UI. But I don't know how to upload batch data with scheduling?
Create a google cloud function that is triggered when a file is uploaded to the cloud storage bucket.
Here's an example with a json file in python.