sam_ten2001
sam_ten2001

Reputation: 33

Is there a way/hook to get notified when bigquery tables get updated?

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

Answers (1)

Graham Polley
Graham Polley

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

Related Questions