2012-09-12 45 views
0

根據BigQuery Browser tool documentation提到的CSV出口限制:bigquery「以CSV格式下載」的真正行限制是什麼?

If a query result set has fewer than 16,000 rows, you can download it as a CSV file.

我們試過此功能,並限制似乎比16,000行小得多。使用此查詢:

SELECT 
    contract_id, 
    product, 
    AVG(element_value) 
FROM [******.payout] 
GROUP BY contract_id, product 
LIMIT 600; 

的UI有一個錯誤響應:

This result set contains too many rows for direct download. Please use "Save as Table" and then export...

如果我減少LIMIT爲500,則CSV下載作品。

您能否確認實際的行數限制?文檔是否過時,或者這是查詢界面中的錯誤?

回答

2

這是UI中的一個錯誤 - 以CSV格式下載應該可以處理多達16k行(或10 MB的結果)。這已經在內部得到解決,修復應該在下週發佈。