我已经安装了Google Cloud Bigtable Java SDK,但找不到以下类:TableName is not a member of package org.apache.hadoop.hbase
。我使用了on GitHub所述的版本链接:
<dependency>
<groupId>com.google.cloud.bigtable</groupId>
<artifactId>bigtable-hbase-1.0</artifactId>
<version>0.2.2</version>
</dependency>
答案 0 :(得分:2)
TableName
类是HBase的一部分,而不是Cloud Bigtable。例如,请查看Simple-CLI。
您注意到pom.xml
,我们有:
<dependencies>
<dependency>
<groupId>com.google.cloud.bigtable</groupId>
<artifactId>bigtable-hbase-1.1</artifactId>
<version>${bigtable.version}</version>
</dependency>
<dependency>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-client</artifactId>
<version>${hbase.version}</version>
</dependency>
bigtable.version
= 0.2.2且hbase.version
= 1.1.1