托管虚拟机的Google Cloud Bigtable部署错误

时间:2016-02-11 22:20:44

标签: bigtable google-cloud-bigtable

我正在尝试将this example部署到Google Cloud。我遵循了确切的指示,

当我访问云控制台时 - > App Engine - >版本,我确实看到部署了新版本,但版本的大小为0,即使在我等了30分钟之后,转到模块url也会返回503服务器错误。

Error: Server Error The service you requested is not available yet.
Please try again in 30 seconds.

由于除了PROJECT_IDCLUSTER_UNIQUE_ID等之外,我没有修改示例中的任何内容。这可能是什么问题?

1 个答案:

答案 0 :(得分:1)

我遇到了类似的问题。我通过做以下更改来解决它:

  1. 在web.xml中:
  2. <servlet> <servlet-name>test</servlet-name> <servlet-class>com.example.cloud.bigtable.helloworld.HelloServlet </servlet-class> </servlet> <servlet-mapping> <servlet-name>test</servlet-name> <url-pattern>/test/*</url-pattern> </servlet-mapping>

    1. 在WebApp文件夹中添加了index.html文件。

    2. 在pom.xml中,添加了以下内容:

      <dependency> <groupId>org.apache.hbase</groupId> <artifactId>hbase-client</artifactId> <version>1.1.1</version> </dependency>