标准(非灵活)Google App Engine 是否支持 Google Cloud Bigtable?
Does standard (non-flexible) Google App Engine support Google Cloud Bigtable?
是否有官方页面回答了这个问题? 2016 年 11 月,我尝试 运行 一些 Java Bigtable 代码,但它在本地开发服务器和真实的远程实例上都失败了。
我已经尝试了两个库的不同版本。 Appengine 抱怨使用 JMX 或 运行ning 线程。在这两种情况下,这些 technologies/APIs 的用法都在内部,被 Bigtable 客户端核心用于连接建立等
您现在可以使用来自 Google App Engine Standard 的 Cloud Bigtable,这里是 documentation with a code sample and a complete project。
您可以在 App Engine Standard 中使用 Cloud Bigtable,但目前只能使用 Java(据我所知)。正如另一位发布的那样,this repo and this tutorial 包含一个正在完成的示例项目。
此外,这是旧的,但我在他的评论中找到了 Aram 问题的答案。我无法直接发表评论,所以我将其张贴在这里(没有足够的代表)。 github 存储库缺少 pom.xml 文件中的依赖项。只需将以下内容添加到 <dependencies>
元素即可修复任何错误:
<dependency>
<groupId>com.google.appengine</groupId>
<artifactId>appengine-api-1.0-sdk</artifactId>
<version>1.9.63</version>
</dependency>
是否有官方页面回答了这个问题? 2016 年 11 月,我尝试 运行 一些 Java Bigtable 代码,但它在本地开发服务器和真实的远程实例上都失败了。
我已经尝试了两个库的不同版本。 Appengine 抱怨使用 JMX 或 运行ning 线程。在这两种情况下,这些 technologies/APIs 的用法都在内部,被 Bigtable 客户端核心用于连接建立等
您现在可以使用来自 Google App Engine Standard 的 Cloud Bigtable,这里是 documentation with a code sample and a complete project。
您可以在 App Engine Standard 中使用 Cloud Bigtable,但目前只能使用 Java(据我所知)。正如另一位发布的那样,this repo and this tutorial 包含一个正在完成的示例项目。
此外,这是旧的,但我在他的评论中找到了 Aram 问题的答案。我无法直接发表评论,所以我将其张贴在这里(没有足够的代表)。 github 存储库缺少 pom.xml 文件中的依赖项。只需将以下内容添加到 <dependencies>
元素即可修复任何错误:
<dependency>
<groupId>com.google.appengine</groupId>
<artifactId>appengine-api-1.0-sdk</artifactId>
<version>1.9.63</version>
</dependency>