I'm trying to make a simple Web Service that runs on Apache Tomcat and has only one operation thate makes a HBase table scan. Here is how i get the config:
Configuration config = HBaseConfiguration.create();
config.set("hbase.zookeeper.quorum", "hdp-node");
Htable table = new HTable(config, "myTable");
... scanner ...
scanner.close()
table.close()
The problem is that a connection to Zookeeper stays open and when i reach to a certain number of connedtions , Zookeeper begins to discard.
How can I close my Zookeeper connection after i make the scan?
Thanks