2017-05-15 71 views
0

我是Google App Engine的新手,我试图通过一些教程来看看这对我的组织是如何工作的。我们正在考虑将一些数据放入BigQuery中,并将一些Web应用程序转换为需要访问BigQuery数据的App Engine。无法从Eclipse的本地App Engine实例连接到BigQuery

我使用java的文档样本主代码,具体地大量查询/云客户端/ SRC /主/ JAVA/COM /示例/大量查询/ SimpleApp.java

我可以从命令运行该使用

mvn exec:java -Dexec.mainClass=com.example.bigquery.SimpleAppMain

我的代码合并到App Engine的,这我在Eclipse中运行并创建了一个包装线,所以我仍然可以在命令行中运行它。它在从命令行运行时起作用,但在Eclipse中从App Engine运行时出现错误。

有什么我很想配置我的本地App Engine连接到Big Query吗?

错误:

com.google.cloud.bigquery.BigQueryException: Invalid project ID 'no_app_id'. Project IDs must contain 6-63 lowercase letters, digits, or dashes. IDs must start with a letter and may not end with a dash. 
at com.google.cloud.bigquery.spi.v2.HttpBigQueryRpc.translate(HttpBigQueryRpc.java:86) 
at com.google.cloud.bigquery.spi.v2.HttpBigQueryRpc.create(HttpBigQueryRpc.java:170) 
at com.google.cloud.bigquery.BigQueryImpl$3.call(BigQueryImpl.java:208) 
... 
Caused by: com.google.api.client.googleapis.json.GoogleJsonResponseException: 400 
{ "code" : 400, 
    "errors" : [ { 
    "domain" : "global", 
    "message" : "Invalid project ID 'no_app_id'. Project IDs must contain 6-63 lowercase letters, digits, or dashes. IDs must start with a letter and may not end with a dash.", 
    "reason" : "invalid" 
    } ], 
    "message" : "Invalid project ID 'no_app_id'. Project IDs must contain 6-63 lowercase letters, digits, or dashes. IDs must start with a letter and may not end with a dash." 
} 

代码:

package com.example.bigquery; 

import com.google.cloud.bigquery.BigQuery; 
import com.google.cloud.bigquery.BigQueryOptions; 
import com.google.cloud.bigquery.FieldValue; 
import com.google.cloud.bigquery.Job; 
import com.google.cloud.bigquery.JobId; 
import com.google.cloud.bigquery.JobInfo; 
import com.google.cloud.bigquery.QueryJobConfiguration; 
import com.google.cloud.bigquery.QueryResponse; 
import com.google.cloud.bigquery.QueryResult; 

import java.util.List; 
import java.util.UUID; 

public class SimpleApp { 
    public void runBQ() throws Exception { 
    // [START create_client] 
    BigQuery bigquery = BigQueryOptions.getDefaultInstance().getService(); 
    // [END create_client] 
    // [START run_query] 
    QueryJobConfiguration queryConfig = 
     QueryJobConfiguration.newBuilder(
       "SELECT " 
        + "APPROX_TOP_COUNT(corpus, 10) as title, " 
        + "COUNT(*) as unique_words " 
        + "FROM `publicdata.samples.shakespeare`;") 
      // Use standard SQL syntax for queries. 
      // See: https://cloud.google.com/bigquery/sql-reference/ 
      .setUseLegacySql(false) 
      .build(); 

    // Create a job ID so that we can safely retry. 
    JobId jobId = JobId.of(UUID.randomUUID().toString()); 
    Job queryJob = bigquery.create(JobInfo.newBuilder(queryConfig).setJobId(jobId).build()); 

    // Wait for the query to complete. 
    queryJob = queryJob.waitFor(); 

    // Check for errors 
    if (queryJob == null) { 
     throw new RuntimeException("Job no longer exists"); 
    } else if (queryJob.getStatus().getError() != null) { 
     // You can also look at queryJob.getStatus().getExecutionErrors() for all 
     // errors, not just the latest one. 
     throw new RuntimeException(queryJob.getStatus().getError().toString()); 
    } 

    // Get the results. 
    QueryResponse response = bigquery.getQueryResults(jobId); 
    // [END run_query] 

    // [START print_results] 
    QueryResult result = response.getResult(); 

    // Print all pages of the results. 
    while (result != null) { 
     for (List<FieldValue> row : result.iterateAll()) { 
     List<FieldValue> titles = row.get(0).getRepeatedValue(); 
     System.out.println("titles:"); 

     for (FieldValue titleValue : titles) { 
      List<FieldValue> titleRecord = titleValue.getRecordValue(); 
      String title = titleRecord.get(0).getStringValue(); 
      long uniqueWords = titleRecord.get(1).getLongValue(); 
      System.out.printf("\t%s: %d\n", title, uniqueWords); 
     } 

     long uniqueWords = row.get(1).getLongValue(); 
     System.out.printf("total unique words: %d\n", uniqueWords); 
     } 

     result = result.getNextPage(); 
    } 
    // [END print_results] 
    } 
} 

回答

1

从你的错误代码外观上来看,它可能是由于未设置项目ID: “no_app_id”。以下是如何设置应用程序引擎的项目ID:https://developers.google.com/eclipse/docs/appengine_appid_version

+0

我看着你提供的链接,我没有谷歌菜单选项,当我右键点击该项目。 仅供参考 - 我已安装“Google Cloud Platform for Eclipse 4.5及更高版本”插件。从我可以看到的是有一个较旧的“Google Plugin for Eclipse”,但它想要卸载我安装的其他插件。还有什么我失踪? – RyanD

+0

您可以看到它是否存在于文件中:“特定App Engine项目的项目标识和版本由appengine-web.xml文件定义,可在war/WEB-INF目录中找到”? –

+0

我没有在appengine-web.xml中列出他们中的任何一个。我查了一下格式并添加了标签,它给了我一个警告,即“应该在部署时指定项目ID” – RyanD

相关问题