Reputation: 33
I am looking for someway where my code on compute engine needs to be notified when my bigquery table gets updated ? Similar to object change notification on google cloud storage ? If not any work around ? My bigquery tables get updated using Data transfer service.
Upvotes: 0
Views: 2838
Reputation: 14791
To the best of my knowledge, BigQuery does not have any type of notification functionality. It's probably a worthwhile feature request though.
Your best bet is to write a script, schedule it (e.g. a cron), and have it check the last modified timestamp for the table/dataset and fire off a notification when it detects a change/update.
Upvotes: 2