Reputation: 1608
Is there an official page, where this question is answered? In Nov 2016, I am trying to run some Java Bigtable code and it fails on both local dev server and on a real remote instance.
I have tried different versions of both libraries. Appengine either complains about using JMX or running threads. In both cases the usages of these technologies/APIs are deeply internal, being used by Bigtable client core for connection establishment etc.
Upvotes: 0
Views: 381
Reputation: 11
You can use Cloud Bigtable in App Engine Standard, but only currently with Java (as far as I can see). As posted by another, this repo and this tutorial contains a sample project of this being done.
Also, this is old but I found the answer to Aram's question in his comments. I can't comment directly so I am posting it here (not enough rep). The github repo is missing a dependency in the pom.xml file. Just add the following to the <dependencies>
element to fix any errors:
<dependency>
<groupId>com.google.appengine</groupId>
<artifactId>appengine-api-1.0-sdk</artifactId>
<version>1.9.63</version>
</dependency>
Upvotes: 1
Reputation: 7132
You can now use Cloud Bigtable from Google App Engine Standard, here is the documentation with a code sample and a complete project.
Upvotes: 2