Apache-Phoenix | master | HBase 2.5 | Build #673 FAILURE

2024-04-23 Thread Apache Jenkins Server

master branch  HBase 2.5  build #673 status FAILURE
Build #673 https://ci-hadoop.apache.org/job/Phoenix/job/Phoenix-mulitbranch/job/master/673/


Apache-Phoenix | master | HBase 2.4 | Build #673 FAILURE

2024-04-23 Thread Apache Jenkins Server

master branch  HBase 2.4  build #673 status FAILURE
Build #673 https://ci-hadoop.apache.org/job/Phoenix/job/Phoenix-mulitbranch/job/master/673/


Apache-Phoenix | 5.1 | HBase 2.3 | Build #332 FAILURE

2024-04-23 Thread Apache Jenkins Server

5.1 branch  HBase 2.3  build #332 status FAILURE
Build #332 https://ci-hadoop.apache.org/job/Phoenix/job/Phoenix-mulitbranch/job/5.1/332/


Apache-Phoenix | 5.1 | HBase 2.4 | Build #332 SUCCESS

2024-04-23 Thread Apache Jenkins Server

5.1 branch  HBase 2.4  build #332 status SUCCESS
Build #332 https://ci-hadoop.apache.org/job/Phoenix/job/Phoenix-mulitbranch/job/5.1/332/


Apache-Phoenix | 5.1 | HBase 2.5 | Build #332 FAILURE

2024-04-23 Thread Apache Jenkins Server

5.1 branch  HBase 2.5  build #332 status FAILURE
Build #332 https://ci-hadoop.apache.org/job/Phoenix/job/Phoenix-mulitbranch/job/5.1/332/


Apache-Phoenix | 5.1 | HBase 2.1 | Build #332 FAILURE

2024-04-23 Thread Apache Jenkins Server

5.1 branch  HBase 2.1  build #332 status FAILURE
Build #332 https://ci-hadoop.apache.org/job/Phoenix/job/Phoenix-mulitbranch/job/5.1/332/


Apache-Phoenix | 5.1 | HBase 2.2 | Build #332 FAILURE

2024-04-23 Thread Apache Jenkins Server

5.1 branch  HBase 2.2  build #332 status FAILURE
Build #332 https://ci-hadoop.apache.org/job/Phoenix/job/Phoenix-mulitbranch/job/5.1/332/


(phoenix) branch 5.1 updated: PHOENIX-7290 Cannot load or instantiate class org.apache.phoenix.query.DefaultGuidePostsCacheFactory from SquirrelSQL

2024-04-23 Thread stoty
This is an automated email from the ASF dual-hosted git repository.

stoty pushed a commit to branch 5.1
in repository https://gitbox.apache.org/repos/asf/phoenix.git


The following commit(s) were added to refs/heads/5.1 by this push:
 new 86d0632019 PHOENIX-7290 Cannot load or instantiate class 
org.apache.phoenix.query.DefaultGuidePostsCacheFactory from SquirrelSQL
86d0632019 is described below

commit 86d06320196da303ffbd0e3ceec3cfb97a9ec482
Author: Istvan Toth 
AuthorDate: Thu Apr 4 17:16:58 2024 +0200

PHOENIX-7290 Cannot load or instantiate class 
org.apache.phoenix.query.DefaultGuidePostsCacheFactory from SquirrelSQL
---
 .../apache/phoenix/query/ConnectionQueryServicesImpl.java   | 13 ++---
 .../phoenix/query/ConnectionlessQueryServicesImpl.java  | 12 ++--
 2 files changed, 12 insertions(+), 13 deletions(-)

diff --git 
a/phoenix-core/src/main/java/org/apache/phoenix/query/ConnectionQueryServicesImpl.java
 
b/phoenix-core/src/main/java/org/apache/phoenix/query/ConnectionQueryServicesImpl.java
index 859251fe98..e7dad8e149 100644
--- 
a/phoenix-core/src/main/java/org/apache/phoenix/query/ConnectionQueryServicesImpl.java
+++ 
b/phoenix-core/src/main/java/org/apache/phoenix/query/ConnectionQueryServicesImpl.java
@@ -312,8 +312,6 @@ public class ConnectionQueryServicesImpl extends 
DelegateQueryServices implement
 private static final int DEFAULT_OUT_OF_ORDER_MUTATIONS_WAIT_TIME_MS = 
1000;
 private static final String ALTER_TABLE_SET_PROPS =
 "ALTER TABLE %s SET %s=%s";
-private final GuidePostsCacheProvider
-GUIDE_POSTS_CACHE_PROVIDER = new GuidePostsCacheProvider();
 protected final Configuration config;
 protected final ConnectionInfo connectionInfo;
 // Copy of config.getProps(), but read-only to prevent synchronization 
that we
@@ -322,7 +320,7 @@ public class ConnectionQueryServicesImpl extends 
DelegateQueryServices implement
 private final String userName;
 private final User user;
 private final 
ConcurrentHashMap childServices;
-private final GuidePostsCacheWrapper tableStatsCache;
+private GuidePostsCacheWrapper tableStatsCache;
 
 // Cache the latest meta data here for future connections
 // writes guarded by "latestMetaDataLock"
@@ -453,10 +451,6 @@ public class ConnectionQueryServicesImpl extends 
DelegateQueryServices implement
 }
 connectionQueues = ImmutableList.copyOf(list);
 
-// A little bit of a smell to leak `this` here, but should not be a 
problem
-this.tableStatsCache = 
GUIDE_POSTS_CACHE_PROVIDER.getGuidePostsCache(props.get(GUIDE_POSTS_CACHE_FACTORY_CLASS,
-QueryServicesOptions.DEFAULT_GUIDE_POSTS_CACHE_FACTORY_CLASS), 
this, config);
-
 this.isAutoUpgradeEnabled = config.getBoolean(AUTO_UPGRADE_ENABLED, 
QueryServicesOptions.DEFAULT_AUTO_UPGRADE_ENABLED);
 this.maxConnectionsAllowed = 
config.getInt(QueryServices.CLIENT_CONNECTION_MAX_ALLOWED_CONNECTIONS,
 
QueryServicesOptions.DEFAULT_CLIENT_CONNECTION_MAX_ALLOWED_CONNECTIONS);
@@ -3342,6 +3336,11 @@ public class ConnectionQueryServicesImpl extends 
DelegateQueryServices implement
 LOGGER.info("An instance of 
ConnectionQueryServices was created.");
 openConnection();
 hConnectionEstablished = true;
+tableStatsCache =
+(new 
GuidePostsCacheProvider()).getGuidePostsCache(
+
props.getProperty(GUIDE_POSTS_CACHE_FACTORY_CLASS,
+
QueryServicesOptions.DEFAULT_GUIDE_POSTS_CACHE_FACTORY_CLASS),
+ConnectionQueryServicesImpl.this, 
config);
 String skipSystemExistenceCheck =
 
props.getProperty(SKIP_SYSTEM_TABLES_EXISTENCE_CHECK);
 if (skipSystemExistenceCheck != null &&
diff --git 
a/phoenix-core/src/main/java/org/apache/phoenix/query/ConnectionlessQueryServicesImpl.java
 
b/phoenix-core/src/main/java/org/apache/phoenix/query/ConnectionlessQueryServicesImpl.java
index f215786f2e..2a048c7319 100644
--- 
a/phoenix-core/src/main/java/org/apache/phoenix/query/ConnectionlessQueryServicesImpl.java
+++ 
b/phoenix-core/src/main/java/org/apache/phoenix/query/ConnectionlessQueryServicesImpl.java
@@ -110,8 +110,6 @@ import 
org.apache.phoenix.thirdparty.com.google.common.collect.Maps;
  */
 public class ConnectionlessQueryServicesImpl extends DelegateQueryServices 
implements ConnectionQueryServices  {
 private static ServerName SERVER_NAME = 
ServerName.parseServerName(HConstants.LOCALHOST + 
Addressing.HOSTNAME_PORT_SEPARATOR + HConstants.DEFAULT_ZOOKEPER_CLIENT_PORT);
-private static final GuidePostsCacheProvider
-GUIDE_POSTS_CACHE_PROVIDER = new GuidePostsCacheProvider();
 private final 

(phoenix) branch 5.2 updated: PHOENIX-7290 Cannot load or instantiate class org.apache.phoenix.query.DefaultGuidePostsCacheFactory from SquirrelSQL

2024-04-23 Thread stoty
This is an automated email from the ASF dual-hosted git repository.

stoty pushed a commit to branch 5.2
in repository https://gitbox.apache.org/repos/asf/phoenix.git


The following commit(s) were added to refs/heads/5.2 by this push:
 new 781016f5cd PHOENIX-7290 Cannot load or instantiate class 
org.apache.phoenix.query.DefaultGuidePostsCacheFactory from SquirrelSQL
781016f5cd is described below

commit 781016f5cdffd466ce8655d8b6ab511c5a60af7a
Author: Istvan Toth 
AuthorDate: Thu Apr 4 17:16:58 2024 +0200

PHOENIX-7290 Cannot load or instantiate class 
org.apache.phoenix.query.DefaultGuidePostsCacheFactory from SquirrelSQL
---
 .../apache/phoenix/query/ConnectionQueryServicesImpl.java   | 13 ++---
 .../phoenix/query/ConnectionlessQueryServicesImpl.java  | 12 ++--
 2 files changed, 12 insertions(+), 13 deletions(-)

diff --git 
a/phoenix-core-client/src/main/java/org/apache/phoenix/query/ConnectionQueryServicesImpl.java
 
b/phoenix-core-client/src/main/java/org/apache/phoenix/query/ConnectionQueryServicesImpl.java
index 4578b075e2..df4aaf5d05 100644
--- 
a/phoenix-core-client/src/main/java/org/apache/phoenix/query/ConnectionQueryServicesImpl.java
+++ 
b/phoenix-core-client/src/main/java/org/apache/phoenix/query/ConnectionQueryServicesImpl.java
@@ -306,8 +306,6 @@ public class ConnectionQueryServicesImpl extends 
DelegateQueryServices implement
 private static final int DEFAULT_OUT_OF_ORDER_MUTATIONS_WAIT_TIME_MS = 
1000;
 private static final String ALTER_TABLE_SET_PROPS =
 "ALTER TABLE %s SET %s=%s";
-private final GuidePostsCacheProvider
-GUIDE_POSTS_CACHE_PROVIDER = new GuidePostsCacheProvider();
 protected final Configuration config;
 
 public ConnectionInfo getConnectionInfo() {
@@ -321,7 +319,7 @@ public class ConnectionQueryServicesImpl extends 
DelegateQueryServices implement
 private final String userName;
 private final User user;
 private final 
ConcurrentHashMap childServices;
-private final GuidePostsCacheWrapper tableStatsCache;
+private GuidePostsCacheWrapper tableStatsCache;
 
 // Cache the latest meta data here for future connections
 // writes guarded by "latestMetaDataLock"
@@ -470,10 +468,6 @@ public class ConnectionQueryServicesImpl extends 
DelegateQueryServices implement
 }
 connectionQueues = ImmutableList.copyOf(list);
 
-// A little bit of a smell to leak `this` here, but should not be a 
problem
-this.tableStatsCache = 
GUIDE_POSTS_CACHE_PROVIDER.getGuidePostsCache(props.get(GUIDE_POSTS_CACHE_FACTORY_CLASS,
-QueryServicesOptions.DEFAULT_GUIDE_POSTS_CACHE_FACTORY_CLASS), 
this, config);
-
 this.isAutoUpgradeEnabled = config.getBoolean(AUTO_UPGRADE_ENABLED, 
QueryServicesOptions.DEFAULT_AUTO_UPGRADE_ENABLED);
 this.maxConnectionsAllowed = 
config.getInt(QueryServices.CLIENT_CONNECTION_MAX_ALLOWED_CONNECTIONS,
 
QueryServicesOptions.DEFAULT_CLIENT_CONNECTION_MAX_ALLOWED_CONNECTIONS);
@@ -3561,6 +3555,11 @@ public class ConnectionQueryServicesImpl extends 
DelegateQueryServices implement
 LOGGER.info("An instance of 
ConnectionQueryServices was created.");
 openConnection();
 hConnectionEstablished = true;
+tableStatsCache =
+(new 
GuidePostsCacheProvider()).getGuidePostsCache(
+
props.getProperty(GUIDE_POSTS_CACHE_FACTORY_CLASS,
+
QueryServicesOptions.DEFAULT_GUIDE_POSTS_CACHE_FACTORY_CLASS),
+ConnectionQueryServicesImpl.this, 
config);
 String skipSystemExistenceCheck =
 
props.getProperty(SKIP_SYSTEM_TABLES_EXISTENCE_CHECK);
 if (skipSystemExistenceCheck != null &&
diff --git 
a/phoenix-core-client/src/main/java/org/apache/phoenix/query/ConnectionlessQueryServicesImpl.java
 
b/phoenix-core-client/src/main/java/org/apache/phoenix/query/ConnectionlessQueryServicesImpl.java
index 1885658259..470a44fb76 100644
--- 
a/phoenix-core-client/src/main/java/org/apache/phoenix/query/ConnectionlessQueryServicesImpl.java
+++ 
b/phoenix-core-client/src/main/java/org/apache/phoenix/query/ConnectionlessQueryServicesImpl.java
@@ -110,8 +110,6 @@ import 
org.apache.phoenix.thirdparty.com.google.common.collect.Maps;
  */
 public class ConnectionlessQueryServicesImpl extends DelegateQueryServices 
implements ConnectionQueryServices  {
 private static ServerName SERVER_NAME = 
ServerName.parseServerName(HConstants.LOCALHOST + 
Addressing.HOSTNAME_PORT_SEPARATOR + HConstants.DEFAULT_ZOOKEEPER_CLIENT_PORT);
-private static final GuidePostsCacheProvider
-GUIDE_POSTS_CACHE_PROVIDER = new GuidePostsCacheProvider();
 private final ReadOnlyProps props;
 

(phoenix) branch master updated: PHOENIX-7290 Cannot load or instantiate class org.apache.phoenix.query.DefaultGuidePostsCacheFactory from SquirrelSQL

2024-04-23 Thread stoty
This is an automated email from the ASF dual-hosted git repository.

stoty pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/phoenix.git


The following commit(s) were added to refs/heads/master by this push:
 new 4cd7809adc PHOENIX-7290 Cannot load or instantiate class 
org.apache.phoenix.query.DefaultGuidePostsCacheFactory from SquirrelSQL
4cd7809adc is described below

commit 4cd7809adcc8172c77d548ef29f54c6163b218c3
Author: Istvan Toth 
AuthorDate: Thu Apr 4 17:16:58 2024 +0200

PHOENIX-7290 Cannot load or instantiate class 
org.apache.phoenix.query.DefaultGuidePostsCacheFactory from SquirrelSQL
---
 .../apache/phoenix/query/ConnectionQueryServicesImpl.java   | 13 ++---
 .../phoenix/query/ConnectionlessQueryServicesImpl.java  | 12 ++--
 2 files changed, 12 insertions(+), 13 deletions(-)

diff --git 
a/phoenix-core-client/src/main/java/org/apache/phoenix/query/ConnectionQueryServicesImpl.java
 
b/phoenix-core-client/src/main/java/org/apache/phoenix/query/ConnectionQueryServicesImpl.java
index dcc82edb74..400740c1d8 100644
--- 
a/phoenix-core-client/src/main/java/org/apache/phoenix/query/ConnectionQueryServicesImpl.java
+++ 
b/phoenix-core-client/src/main/java/org/apache/phoenix/query/ConnectionQueryServicesImpl.java
@@ -306,8 +306,6 @@ public class ConnectionQueryServicesImpl extends 
DelegateQueryServices implement
 private static final int DEFAULT_OUT_OF_ORDER_MUTATIONS_WAIT_TIME_MS = 
1000;
 private static final String ALTER_TABLE_SET_PROPS =
 "ALTER TABLE %s SET %s=%s";
-private final GuidePostsCacheProvider
-GUIDE_POSTS_CACHE_PROVIDER = new GuidePostsCacheProvider();
 protected final Configuration config;
 
 public ConnectionInfo getConnectionInfo() {
@@ -321,7 +319,7 @@ public class ConnectionQueryServicesImpl extends 
DelegateQueryServices implement
 private final String userName;
 private final User user;
 private final 
ConcurrentHashMap childServices;
-private final GuidePostsCacheWrapper tableStatsCache;
+private GuidePostsCacheWrapper tableStatsCache;
 
 // Cache the latest meta data here for future connections
 // writes guarded by "latestMetaDataLock"
@@ -470,10 +468,6 @@ public class ConnectionQueryServicesImpl extends 
DelegateQueryServices implement
 }
 connectionQueues = ImmutableList.copyOf(list);
 
-// A little bit of a smell to leak `this` here, but should not be a 
problem
-this.tableStatsCache = 
GUIDE_POSTS_CACHE_PROVIDER.getGuidePostsCache(props.get(GUIDE_POSTS_CACHE_FACTORY_CLASS,
-QueryServicesOptions.DEFAULT_GUIDE_POSTS_CACHE_FACTORY_CLASS), 
this, config);
-
 this.isAutoUpgradeEnabled = config.getBoolean(AUTO_UPGRADE_ENABLED, 
QueryServicesOptions.DEFAULT_AUTO_UPGRADE_ENABLED);
 this.maxConnectionsAllowed = 
config.getInt(QueryServices.CLIENT_CONNECTION_MAX_ALLOWED_CONNECTIONS,
 
QueryServicesOptions.DEFAULT_CLIENT_CONNECTION_MAX_ALLOWED_CONNECTIONS);
@@ -3561,6 +3555,11 @@ public class ConnectionQueryServicesImpl extends 
DelegateQueryServices implement
 LOGGER.info("An instance of 
ConnectionQueryServices was created.");
 openConnection();
 hConnectionEstablished = true;
+tableStatsCache =
+(new 
GuidePostsCacheProvider()).getGuidePostsCache(
+
props.getProperty(GUIDE_POSTS_CACHE_FACTORY_CLASS,
+
QueryServicesOptions.DEFAULT_GUIDE_POSTS_CACHE_FACTORY_CLASS),
+ConnectionQueryServicesImpl.this, 
config);
 String skipSystemExistenceCheck =
 
props.getProperty(SKIP_SYSTEM_TABLES_EXISTENCE_CHECK);
 if (skipSystemExistenceCheck != null &&
diff --git 
a/phoenix-core-client/src/main/java/org/apache/phoenix/query/ConnectionlessQueryServicesImpl.java
 
b/phoenix-core-client/src/main/java/org/apache/phoenix/query/ConnectionlessQueryServicesImpl.java
index 1885658259..470a44fb76 100644
--- 
a/phoenix-core-client/src/main/java/org/apache/phoenix/query/ConnectionlessQueryServicesImpl.java
+++ 
b/phoenix-core-client/src/main/java/org/apache/phoenix/query/ConnectionlessQueryServicesImpl.java
@@ -110,8 +110,6 @@ import 
org.apache.phoenix.thirdparty.com.google.common.collect.Maps;
  */
 public class ConnectionlessQueryServicesImpl extends DelegateQueryServices 
implements ConnectionQueryServices  {
 private static ServerName SERVER_NAME = 
ServerName.parseServerName(HConstants.LOCALHOST + 
Addressing.HOSTNAME_PORT_SEPARATOR + HConstants.DEFAULT_ZOOKEEPER_CLIENT_PORT);
-private static final GuidePostsCacheProvider
-GUIDE_POSTS_CACHE_PROVIDER = new GuidePostsCacheProvider();
 private final ReadOnlyProps props;