BigQuery bq cancel job examples
To cancel BigQuery jobs use the bq cancel command
Command line
bq cancel my-project-1234:US.bquijob_123x456_123y123z123c
Using SQL
CALL BQ.JOBS.CANCEL('PROJECT_ID.JOB_ID');
It usually takes less than a minute to complete a job cancellation
Post Comment