Windows10安装Hbase连接可视化工具 SQuirreL SQL Client 集成Phoenix Hbase 报错

1.连接报错如下:

Windows10安装Hbase连接可视化工具 SQuirreL SQL Client 集成Phoenix Hbase 报错

2.是因为hbase配置phoenix有问题,在phoenix的 apache-phoenix-4.14.3-HBase-1.3-bin:/bin/hbase-site.xml中添加

<configuration>
  <property>
    <name>hbase.regionserver.wal.codec</name>
    <value>org.apache.hadoop.hbase.regionserver.wal.IndexedWALEditCodec</value>
  </property>

<property>
<name>phoenix.query.timeoutMs</name>
<value>60000000</value>
</property>

</configuration>


3.从apache-phoenix-4.14.3-HBase-1.3-bin中复制 phoenix-4.14.3-HBase-1.3-server.jar到hbase-1.3.6/lib 下就ok了我遇到的问题是这样解决的不知道大家是不是和我一样!

 

4.配置好后重新连接就成功了

Windows10安装Hbase连接可视化工具 SQuirreL SQL Client 集成Phoenix Hbase 报错