Reputation: 19
Is there a way to automatically kill/stop a query if its taking more than specified resources (either in terms of time or number of rows/data to be scanned) ?
Thanks Gour
Upvotes: 1
Views: 402
Reputation: 208002
There is a documentation page about BigQuery Best Practices: Controlling Costs which described all methods:
but essentially you can program on the dry-run or the number of bytes billed feature to stop execution.
Upvotes: 2