我正在研究Sinatra,ruby应用程序。
我需要从Google-BigQuery中的一个视图表中获取数据,并且我在我的应用程序中使用google-cloud-bigquery gem。
这是我如何查询google-bigquery(ruby代码)
bigquery = Google::Cloud::Bigquery.new(<necessary credentials for the application>)
query = "select * from `dataset.table_name` limit 10"
bigquery.query query => #(this query will give me the exact output)
但是,当我无限制地查询时,如下面的
query = "select * from `dataset.table_name`"
bigquery.query query
我会得到这种回应。
Google::Cloud::InvalidArgumentError (resourcesExceeded: Resources exceeded during query execution: The query could not be executed)
所以,在这种情况下,我该如何处理它。因为,我需要从该表中获取所有数据,我不应该给予任何限制。
答案 0 :(得分:3)
您应该使用Tabledata: list
API(或您选择的客户端中的相应方法),而不是查询整个表格。
使用List是免费的,并且还附带分页,因此您可以逐页获取整个表数据