美文网首页程序员
squirrel 连接phoenix,当配置了支持事物后无法连接

squirrel 连接phoenix,当配置了支持事物后无法连接

作者: suolemen | 来源:发表于2018-12-20 09:34 被阅读28次

    问题描述

    异常信息isNamespaceMappingEnabled异常

    问题分析:而工具squirrel没有地方可以修改配置,导致客户端报错了。连接phoenix有胖客户端和瘦客户端方式,使用瘦客户端方式连接可以解决!无需客户端配置如下选项。

    由于配置phoenix事物时,需要配置phoenix.schema.isNamespaceMappingEnabled选项

    vi hbase-site.xml

      <property>

        <name>phoenix.schema.isNamespaceMappingEnabled</name>

        <value>true</value>

      </property>

      <property> 

    问题解决

    问题产生原因:网上大部分的连接方式,还是使用胖客户端的方式,而这种方式由于无法修改配置文件,无法解决问题。胖客户端连接方式:

    URI:  jdbc:phoenix:10.3.10.231:2181/hbase

    驱动:org.apache.phoenix.***.Driver

    解决方法:瘦客户端连接

    URI:jdbc:phoenix:thin:url=http://10.3.10.233:8765;serialization=PROTOBUF

    驱动:org.apache.phoenix.queryserver.client.Driver

    前提:服务端phoenix启动瘦客户端

    cd /opt/model/phoenix-4.8.0-cdh5.8.0/bin/

    ./queryserver.py start

    cat /etc/hbase/conf/hbase-site.xml 已经修改好了配置:

    <property>

        <name>phoenix.schema.isNamespaceMappingEnabled</name>

    <value>true</value>

    </property>

    截图

    瘦客户端配置 连接结果验证

    相关文章

      网友评论

        本文标题:squirrel 连接phoenix,当配置了支持事物后无法连接

        本文链接:https://www.haomeiwen.com/subject/cxvekqtx.html