smaica
smaica

Reputation: 817

Google BigQuery - understanding quotas and limits: project exceeded quota for free query bytes scanned

I ran a query as a batch job that failed with the error google.api_core.exceptions.Forbidden: 403 Quota exceeded: Your project exceeded quota for free query bytes scanned

But when I take a look at my current usage it tells me I used almost nothing and none of my free 1TB query limit (I have 2 projects, but both show the same):

enter image description here

I also set up a dashboard with two metrics that might be of help but I don't quite understand as there is no axis labeling provided:

enter image description here

Where can I actually see the current status of my "already scanned bytes"?

Thanks!

Upvotes: 1

Views: 661

Answers (1)

Yetkin Aydemir
Yetkin Aydemir

Reputation: 73

INFORMATION_SCHEMA views can be useful in your case.

You can find details using this link: https://cloud.google.com/bigquery/docs/monitoring

Upvotes: 2

Related Questions