问题:在已存在的表中添加列族报错NoSuchColumnFamilyException: Column family table does not exist in region hbase:meta,,1.1588230740 in table 'hbase:meta'

hbase的版本是2.3.3

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

 

解决:是因为hbase服务端版本过低,客户端版本不能高于服务端版本,最后用1.2.0-cdh5.7.0版本就好了

<dependency>
    <groupId>org.apache.hbase</groupId>
    <artifactId>hbase-client</artifactId>
    <version>1.2.0-cdh5.7.0</version>
</dependency>

 

参考文章:https://blog.csdn.net/helloworld0906/article/details/103114427

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-18
  • 2022-12-23
  • 2021-04-29
猜你喜欢
  • 2021-06-17
  • 2022-12-23
  • 2021-08-08
  • 2021-12-28
  • 2021-11-10
  • 2021-11-28
相关资源
相似解决方案