3

我可以在大查询浏览器工具上调用 sql 我在 centos 上安装了 bq 工具并注册它现在我可以连接 bigdata 并显示数据集或使用 head 方法获取表数据但是当我从 bq 工具调用 quert 时我得到了“查询操作中的 BigQuery 错误:没有项目 ID 就无法开始工作。 ” 我在谷歌上搜索了它,但没有发现任何有用的信息。

是否有人通过“ This is BigQuery CLI v2.0.1 ”运行选择查询

BigQuery> ls

   projectId     friendlyName  
 -------------- -------------- 
  XXXX   

API项目

BigQuery> show publicdata:samples.shakespeare   
Table publicdata:samples.shakespeare


   Last modified                  Schema                 Total Rows   Total Bytes   Expiration  
 ----------------- ------------------------------------ ------------ ------------- ------------ 
  02 May 02:47:25   |- word: string (required)           164656       6432064                   
                    |- word_count: integer (required)                                           
                    |- corpus: string (required)                                                
                    |- corpus_date: integer (required)   

BigQuery> query "SELECT  title FROM [publicdata:samples.wikipedia] LIMIT 10 "
BigQuery error in query operation: Cannot start a job without a project id.

4

1 回答 1

3

为了运行查询,您需要提供一个项目 ID,即为查询计费的项目(有 25GB/月的免费配额,但我们仍然需要一个项目来将使用情况归因于)。您可以使用 --project_id 标志或通过运行设置默认项目来指定项目gcloud config set project PROJECT_ID。请参阅 bq 的文档,尤其是此处的“使用项目”部分。

听起来你可能有旧版本的 bq。最新的可以在这里下载:https ://cloud.google.com/sdk/docs/

于 2012-12-18T02:13:42.040 回答