SQuirrel 访问Hbase 配置及问题解决
版本信息:
HBase:2.4.4
Apache Phoenix: 5.1.2,下载地址 及 安装方式
SQuirrel 4.4.0, 下载地址
遇到的问题:
phoenix: ERROR 726 (43M10): Cannot initiate connection as SYSTEM:CATALOG is found but client does not have phoenix.schema.isNamespaceMappingEnabled enabled
环境信息:
HBase 是安装在Window 10的WSL子系统里,单机安装,使用自带的zookeeper
HBase 配置信息 hbase-site.xml:
<property> <name>hbase.rootdir</name> <value>file:///mnt/c/temp/hbasedata/root</value> </property> <property> <name>hbase.tmp.dir</name> <value>/mnt/c/temp/hbasedata/tmp</value> </property> <property> <name>hbase.zookeeper.quorum</name> <value>127.0.0.1</value> </property> <property> <name>hbase.zookeeper.property.dataDir</name> <value>/mnt/c/temp/hbasedata/zoo</value> </property> <property> <name>hbase.cluster.distributed</name> <value>false</value> </property> <property> <name>hbase.unsafe.stream.capability.enforce</name> <value>false</value> </property> <property> <name>hbase.wal.provider</name> <value>filesystem</value> </property> <property> <name>hbase.master.info.port</name> <value>60010</value> </property> <property> <name>hbase.regionserver.port</name> <value>60020</value> </property> <property> <name>hbase.zookeeper.property.clientPort</name> <value>2181</value> </property>
<!--在phoenix中与hbase的命名空间相对应的是schema概念,默认是没有开启的,添加下面2条配置 --> <property> <name>phoenix.schema.isNamespaceMappingEnabled</name> <value>true</value> </property> <property> <name>phoenix.schema.mapSystemTablesToNamespace</name> <value>true</value> </property><!-- 建立二级索引,将业务需要的数据建立索引,方便查询 -->
<property> <name>hbase.regionserver.wal.codec</name> <value>org.apache.hadoop.hbase.regionserver.wal.IndexedWALEditCodec</value> </property>
解压Apache Phoenix 后,将server部分的jar 包 phoenix-hbase-2.4-5.1.2-bin\phoenix-server-hbase-2.4-5.1.2.jar 拷贝到 hbase-2.4.4-bin\lib 目录,然后在WSL中启动hbase:bin/start-hbase.sh,如下图
Apache Phoenix 命令行方式访问HBase:
将前面的配置文件hbase-site.xml 拷贝到 phoenix-hbase-2.4-5.1.2-bin\bin 目录,在WSL里执行命令:python3 bin/sqlline.py 127.0.0.1:2181,如下图所示,此时可以通过命令行查看hbase里的表,默认情况下只能看到SYSTEM 空间里的表,如果是从hbase shell里创建的表,是无法在这里看到的,需要做phoenix schema 到 hbase namespace的转换,需要修改hbase-site.xml,如上面配置文件所示
执行命令 !tables,可以查看所有的命名空间和表:
SQuirrel client UI 方式访问HBase:
将phoenix-hbase-2.4-5.1.2-bin\bin 目录里的 phoenix-client-hbase-2.4-5.1.2.jar 拷贝到 squirrel-sql-4.4.0\lib 目录
打开SQuirrel UI,
- 创建Driver,填上以下信息:
Example URL:jdbc:phoenix:127.0.0.1:2181,这个只是一个example,后面创建Alias时可以修改
Class Name:org.apache.phoenix.jdbc.PhoenixDriver
创建Alias:
随意输入一个Name,并点击Test 按钮
发现报错无法连接hbase(在WSL里已经使用命令 bin\start-hbase.sh 启动了hbase)
phoenix: ERROR 726 (43M10): Inconsistent namespace mapping properties. Cannot initiate connection as SYSTEM:CATALOG is found but client does not have phoenix.schema.isNamespaceMappingEnabled enabled class java.sql.SQLException: ERROR 726 (43M10): Inconsistent namespace mapping properties. Cannot initiate connection as SYSTEM:CATALOG is found but client does not have phoenix.schema.isNamespaceMappingEnabled enabled
在网上搜索了很久,很少有相关的类似错误的解决方法,后来无意中看到有篇文章,Dbeaver连接Phoenix,里面提到了要将前面修改的hbase-site.xml 配置文件添加到 phoenix-client-hbase-2.4-5.1.2.jar,因为在SQuirrel lib目录里,是没有这个hbase-site.xml文件的,如果不添加此配置文件,那么在连接的时候,是无法实现phoenix 到 hbase 的schema -- namespace 映射关系的,按此修改后,连接成功