spring hbase属性:在哪里指定apache配置超时?

n1bvdmb6  于 2021-06-09  发布在  Hbase
关注(0)|答案(0)|浏览(167)

在使用hbase.version:1.1.1时,在何处设置诸如“hbase.client.retries.number”之类的属性
使用xml配置spring。在我的xml中:

<context:property-placeholder location="classpath:webr/hbase.properties" />

    <context:component-scan base-package="com.mine.xx" />

    <hdp:configuration id="hadoopConfiguration">
        fs.defaultFS=file:///usr/local/XX
    </hdp:configuration>

    <!-- configuration-ref="hadoopConfiguration" -->
    <hdp:hbase-configuration configuration-ref="hadoopConfiguration"
        zk-quorum="${hbase.zk.host}" zk-port="${hbase.zk.port}" />

但是当我设置(在webr/hbase.properties中)时:

hbase.client.retries.number=0
zookeeper.session.timeout=38000
zookeeper.recovery.retry=0
hbase.rpc.timeout=29000
zookeeper.recovery.retry=0

发送扫描后,它们不会被拾取(程序挂起超过3分钟)。
hadoop安装在我的局域网上。

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题