Error HBASE-ZOOKEEPER : Too many connections

后端 未结 3 412
情深已故
情深已故 2021-01-19 02:46

I am using Hbase-Hadoop combination for my application along with Data Nucleus as the ORM.

When I am trying to access hbase via several threads at a single time. It

3条回答
  •  無奈伤痛
    2021-01-19 03:19

    Zookeeper servers have an active connections limit, which by default is 30. You need to increase this limit by setting maxClientCnxns property accordingly in your zookeeper config file, zoo.cfg.

    For 100 connections:

    maxClientCnxns=100
    

    To tell zookeeper to impose no limit to the number of connections:

    maxClientCnxns=0
    

提交回复
热议问题