is there any way how to cancel a running query?
i use the web interface. first i ran a series of tests on tables of 10k and than 20k rows and the response was in seconds. but than i ran the triple join query on a table of 100k rows and it seems endless after thousand of seconds.
i just wanted to run some tests before moving all the work to bigquery but now i'm afraid it's gonna spend the whole monthly 100gb free limit + more.
the table is a simple key-value pairs of integer values.
The shell command bq cancel job_id
will do this now. You can get the job_id
from the Query History tab in the BigQuery console. If you started the query via the CLI, it will have logged the job_id
to the standard output.