BigQuery:遇到文件模式时遇到错误 [英] BigQuery: Encountered an error while globbing file pattern

查看:99
本文介绍了BigQuery:遇到文件模式时遇到错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用Google电子表格中的数据查询联邦表格。根据问题720中的建议
https://代码.google.com / p / google-bigquery / issues / detail?id = 720
我创建了以下代码:

I queried a federated table with data in Google spreadsheet. Following recommendations in issue 720 https://code.google.com/p/google-bigquery/issues/detail?id=720 I've created following code:

    Set<String> scopes = new HashSet<>();
    scopes.add(BigqueryScopes.BIGQUERY);
    scopes.add("https://www.googleapis.com/auth/drive");
    scopes.add("https://www.googleapis.com/auth/spreadsheets");
    final HttpTransport transport= new NetHttpTransport();
    final JsonFactory jsonFactory= new JacksonFactory();
    GoogleCredential credential = new GoogleCredential.Builder()
                .setTransport(transport).setJsonFactory(jsonFactory)
                .setServiceAccountId(GC_CREDENTIALS_ACCOUNT_EMAIL)
                .setServiceAccountScopes(scopes)
                .setServiceAccountPrivateKey(getPrivateKey())       
                .build();
    String omgsql = "SELECT * FROM [<myproject>:<mydataset>.failures] LIMIT 1000";
    JobReference jobIdomg = startQuery(bigquery, "<myproject>", omgsql);

    // Poll for Query Results, return result output
    Job completedJobomg = checkQueryResults(bigquery, "<myproject>", jobIdomg);
    GetQueryResultsResponse queryResultomg = bigquery.jobs()
        .getQueryResults(
            "<myproject>", completedJobomg
                .getJobReference()
                .getJobId()
        ).execute();
    List<TableRow> rowsomg = queryResultomg.getRows();

如果没有

Without https://www.googleapis.com/auth/drive scope job fails immediately after inserting, with it - fails on completion.

Inserting Query Job: SELECT * FROM [<myproject>:<mydataset>.failures] LIMIT 1000
Job ID of Query Job is: job_S3-fY5jrb4P3UhVgNGeRkDYQofg
Job status (194ms) job_S3-fY5jrb4P3UhVgNGeRkDYQofg: RUNNING
Job status (1493ms) job_S3-fY5jrb4P3UhVgNGeRkDYQofg: RUNNING
Job status (2686ms) job_S3-fY5jrb4P3UhVgNGeRkDYQofg: RUNNING
...
Job status (29881ms) job_S3-fY5jrb4P3UhVgNGeRkDYQofg: DONE
Exception in thread "main" com.google.api.client.googleapis.json.GoogleJsonResponseException: 400 Bad Request
{
  "code" : 400,
  "errors" : [ {
    "domain" : "global",
    "location" : "/gdrive/id/1T4qNgi9vFJF4blK4jddYf8XlfT6uDiqNpTExWf1NMyY",
    "locationType" : "other",
    "message" : "Encountered an error while globbing file pattern.",
    "reason" : "invalid"
  } ],
  "message" : "Encountered an error while globbing file pattern."
}
    at com.google.api.client.googleapis.json.GoogleJsonResponseException.from(GoogleJsonResponseException.java:145)

所以这里的问题 - 我还缺少什么?或者它只是一个大问题的bug?

So the question here - what else am I missing? Or is it just a bigquery bug?

推荐答案

好的,经过一天的实验 - 您用来获取Google Credential应该有权访问创建外部表的文件。希望这会帮助别人。

Ok, after a day of experiments - the account you are using to obtain Google Credential should have access to the file(s) on which external table is created. Hope this will help someone.

这篇关于BigQuery:遇到文件模式时遇到错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆