BigQuery error “Response too large to return” when using COUNT(DISTINCT …)

后端 未结 1 1962
时光取名叫无心
时光取名叫无心 2021-01-14 13:46

I have a dataset with ~20M rows and I\'m observing the following behavior.

The query below returns the error \"Response too large to return\". The \'id\' field is sh

相关标签:
1条回答
  • 2021-01-14 14:04

    It's not the result size that is causing this response, it's the intermediate size of the data generated by your COUNT DISTINCT query.

    Note: COUNT DISTINCT returns a statistical approximation after 1000 values - you can alter the approximation by choosing a particular value for the limit in which DISTINCT will return an approximation.. such as: COUNT(DISTINCT your_field, 500)

    See: https://developers.google.com/bigquery/docs/query-reference#aggfunctions

    This behavior is due to the design of BigQuery, which makes it so quick: data is queried via separate nodes, and results are aggregated at mixers. A COUNT will tally the total number of results and combine the answer, but COUNT DISTINCT needs to keep track of potentially millions of separate sums, and then combine those values later. Therefore a COUNT DISTINCT can create a lot of data, and could potentially be over internal maximum for individual nodes.

    Note also that currently, BigQuery LIMIT clauses are applied after the entire result set is determined.

    0 讨论(0)
提交回复
热议问题