Bigquery 错误 "Your project exceeded quota for free storage for projects" 是什么意思?
What does the Bigquery error "Your project exceeded quota for free storage for projects" mean?
我们在查询时开始出现错误
error = {
"location":"free.storage",
"message":"Quota exceeded: Your project exceeded quota for free storage for projects. For more information, see https://cloud.google.com/bigquery/troubleshooting-errors",
"reason":"quotaExceeded"
})
但是我找不到任何关于 "quota for free storage"
的信息
这个配额到底是关于什么的?
消息很明确 -- 您正在接近免费配额的限制,可能是因为您在 bigquery sandbox 中工作,但未配置结算帐户。
因此,您需要 free tier limits,特别是 10 GB 的活动存储空间和 1TB 的查询处理空间。
Google 有 upgrading from the sandbox 的指南,但关键是为您的帐户启用计费,以便您可以访问更多存储空间。
我们在查询时开始出现错误
error = { "location":"free.storage", "message":"Quota exceeded: Your project exceeded quota for free storage for projects. For more information, see https://cloud.google.com/bigquery/troubleshooting-errors", "reason":"quotaExceeded" })
但是我找不到任何关于 "quota for free storage"
的信息这个配额到底是关于什么的?
消息很明确 -- 您正在接近免费配额的限制,可能是因为您在 bigquery sandbox 中工作,但未配置结算帐户。
因此,您需要 free tier limits,特别是 10 GB 的活动存储空间和 1TB 的查询处理空间。
Google 有 upgrading from the sandbox 的指南,但关键是为您的帐户启用计费,以便您可以访问更多存储空间。