PHOENIX-4685 Properly handle connection caching for Phoenix inside RegionServers-addendum(Rajeshbabu)
Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/5ee89b44 Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/5ee89b44 Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/5ee89b44 Branch: refs/heads/4.x-cdh5.13 Commit: 5ee89b440e4394b043674a2a0379339ef14789c6 Parents: 90dc5ef Author: Rajeshbabu Chintaguntla <[email protected]> Authored: Wed May 9 18:13:38 2018 +0530 Committer: James Taylor <[email protected]> Committed: Wed May 9 13:27:36 2018 -0700 ---------------------------------------------------------------------- .../src/main/java/org/apache/phoenix/util/ServerUtil.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/phoenix/blob/5ee89b44/phoenix-core/src/main/java/org/apache/phoenix/util/ServerUtil.java ---------------------------------------------------------------------- diff --git a/phoenix-core/src/main/java/org/apache/phoenix/util/ServerUtil.java b/phoenix-core/src/main/java/org/apache/phoenix/util/ServerUtil.java index d80b6fc..9190373 100644 --- a/phoenix-core/src/main/java/org/apache/phoenix/util/ServerUtil.java +++ b/phoenix-core/src/main/java/org/apache/phoenix/util/ServerUtil.java @@ -26,6 +26,7 @@ import java.io.IOException; import java.sql.SQLException; import java.util.HashMap; import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ExecutorService; import java.util.regex.Matcher; import java.util.regex.Pattern; @@ -66,8 +67,6 @@ import org.apache.phoenix.hbase.index.write.IndexWriterUtils; import org.apache.phoenix.query.QueryServices; import org.apache.phoenix.query.QueryServicesOptions; import org.apache.phoenix.schema.StaleRegionBoundaryCacheException; -import org.jboss.netty.util.internal.ConcurrentHashMap; - @SuppressWarnings("deprecation") public class ServerUtil {
