使用 Google BigQuery,我正在使用 group by 运行查询并收到错误“查询执行期间超出资源”。
增加的配额会允许查询运行吗?
还有其他建议吗?
SELECT
ProductId,
StoreId,
ProductSizeId,
InventoryDate as InventoryDate,
avg(InventoryQuantity) as InventoryQuantity
FROM BigDataTest.denorm
GROUP EACH BY
ProductSizeId,
InventoryDate,
ProductId,
StoreId;
该表约为 250GB,项目编号为 883604934239。