Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
None
Description
Every call to HBaseAdmin#getQuota() opens a new Connection, and then closes it. As far as I can tell, this is pointless, since it could use the existing Connection object held by the HBaseAdmin. If you have a custom RpcClient (like we do at Hubspot), new connections have an expense that we'd rather not pay unnecessarily. I'll submit a PR that addresses this situation and similar ones.