This is an automated email from the ASF dual-hosted git repository.

iwasakims pushed a commit to branch branch-3.6
in repository https://gitbox.apache.org/repos/asf/bigtop.git


The following commit(s) were added to refs/heads/branch-3.6 by this push:
     new 50a6f99c0 BIGTOP-4527. Upgrade Phoenix to 5.3.0. (#1387)
50a6f99c0 is described below

commit 50a6f99c0856eba215db15f02bf4172189451c73
Author: Masatake Iwasaki <[email protected]>
AuthorDate: Fri Jun 5 13:26:02 2026 +0900

    BIGTOP-4527. Upgrade Phoenix to 5.3.0. (#1387)
    
    (cherry picked from commit 1286a5d7319cbc69fb2484b54240c5c5c52f3697)
---
 .../src/common/phoenix/patch1-PHOENIX-7741.diff    | 31 ++++++++++++++++++++++
 bigtop.bom                                         |  2 +-
 2 files changed, 32 insertions(+), 1 deletion(-)

diff --git a/bigtop-packages/src/common/phoenix/patch1-PHOENIX-7741.diff 
b/bigtop-packages/src/common/phoenix/patch1-PHOENIX-7741.diff
new file mode 100644
index 000000000..dbf7f1c6b
--- /dev/null
+++ b/bigtop-packages/src/common/phoenix/patch1-PHOENIX-7741.diff
@@ -0,0 +1,31 @@
+commit 3de9b9eb2e4be9e2763bb2932e45d025c90f0c20
+Author: Umesh <[email protected]>
+Date:   Wed Dec 10 08:55:51 2025 +0530
+
+    PHOENIX-7741 Remove usage of isRegionInTransition method from phoenix 
tests (#2330)
+    
+    ---------
+    
+    Co-authored-by: ukumawat <[email protected]>
+    (cherry picked from commit fd6a76e66f04718d9ec4aaa142ca43ebf6c8cad8)
+
+diff --git 
a/phoenix-core/src/it/java/org/apache/phoenix/rpc/PhoenixServerRpcIT.java 
b/phoenix-core/src/it/java/org/apache/phoenix/rpc/PhoenixServerRpcIT.java
+index 2c1752ba02..3dc8238855 100644
+--- a/phoenix-core/src/it/java/org/apache/phoenix/rpc/PhoenixServerRpcIT.java
++++ b/phoenix-core/src/it/java/org/apache/phoenix/rpc/PhoenixServerRpcIT.java
+@@ -243,11 +243,14 @@ public class PhoenixServerRpcIT extends BaseTest {
+       }
+       byte[] encodedRegionNameInBytes = hri2.getEncodedNameAsBytes();
+       admin.move(encodedRegionNameInBytes, dstServer.getServerName());
++      // verify that both HMaster and Region server are aware of this movement
+       while (
+         dstServer.getOnlineRegion(hri2.getRegionName()) == null
+           || 
dstServer.getRegionsInTransitionInRS().containsKey(encodedRegionNameInBytes)
+           || 
srcServer.getRegionsInTransitionInRS().containsKey(encodedRegionNameInBytes)
+-          || 
master.getAssignmentManager().getRegionStates().isRegionInTransition(hri2)
++          || !ServerName.isSameAddress(
++            
master.getAssignmentManager().getRegionStates().getRegionServerOfRegion(hri2),
++            dstServer.getServerName())
+       ) {
+         // wait for the move to be finished
+         Thread.sleep(1);
diff --git a/bigtop.bom b/bigtop.bom
index 71f5c031d..5637f8002 100644
--- a/bigtop.bom
+++ b/bigtop.bom
@@ -247,7 +247,7 @@ bigtop {
     'phoenix' {
       name    = 'phoenix'
       relNotes = 'Apache Phoenix: A SQL skin over HBase'
-      version { base = "5.2.1"; pkg = base; release = 1 }
+      version { base = "5.3.0"; pkg = base; release = 1 }
       tarball { destination = "$name-${version.base}-src.tar.gz"
                 source      = destination }
       url     { download_path = "/$name/$name-${version.base}"

Reply via email to