Questions tagged «google-bigquery»

3
BigQuery和BigTable有什么区别?[关闭]
已关闭。这个问题需要更加集中。它当前不接受答案。 想改善这个问题吗?更新问题,使其仅通过编辑此帖子来关注一个问题。 去年关闭。 改善这个问题 是否有人会使用BigTable而不是BigQuery?两者似乎都支持读和写操作,后者还提供高级的“查询”操作。 我需要开发一个会员网络(因此我需要跟踪点击和“销售”),所以我对两者之间的差异感到困惑,因为bigQuery似乎只是具有更好API的bigTable。



2
具有BigTable连接的BigQuery,无法执行任何查询
我想基于BigTable中的数据生成一些报告。为此,我想创建一个查询,该查询将从BigTable获取最新数据,并将其传递到Data Studio报告中。现在的问题是,当我在BigQuery中创建BigTable连接时,即使在空表上也无法执行任何查询。我通过以下方式为BigQuery创建类型: bq mk \ --external_table_definition=gs://somebucket/big-table-definition.json \ datareportingdataset.datareportingtable 并且命令成功执行。我的big-table-definition.json样子如下: { "sourceFormat": "BIGTABLE", "sourceUris": [ "https://googleapis.com/bigtable/projects/playground-2/instances/data-reporting/tables/data-reporting-table" ], "bigtableOptions": { "readRowkeyAsString": "true", "columnFamilies" : [ { "familyId": "cf1", "onlyReadLatest": "true", "columns": [ { "qualifierString": "temp", "type": "STRING" }, { //the rest of the columns ] } ] } } 执行简单select *查询时的错误如下所示: Error …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.