Connect to Cloud Bigtable from Google App Engine
问题 It appears that I cannot create a connection from Java class running on AppEngine. I use the following library/dependency: <dependency> <groupId>com.google.cloud.bigtable</groupId> <artifactId>bigtable-hbase-1.1</artifactId> <version>0.1.9</version> </dependency> And the following lines of code: import org.apache.hadoop.hbase.client.ConnectionFactory; import org.apache.hadoop.hbase.*; Configuration conf = HBaseConfiguration.create(); connection = ConnectionFactory.createConnection(conf); It