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 4afe4579bb PHOENIX-7354 Disable 
TransformToolIT.testInvalidRowsWithTableLevelMaxLookback() on HBase 2.6+
4afe4579bb is described below

commit 4afe4579bb3ab01725e4939746d0b7b807b438ac
Author: Istvan Toth <[email protected]>
AuthorDate: Wed Jul 10 13:58:58 2024 +0200

    PHOENIX-7354 Disable 
TransformToolIT.testInvalidRowsWithTableLevelMaxLookback() on HBase 2.6+
    
    also revert the ineffective fix added in PHOENIX-7353
---
 .../java/org/apache/phoenix/end2end/transform/TransformToolIT.java | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/transform/TransformToolIT.java
 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/transform/TransformToolIT.java
index a371f55c48..cdba8b6c2f 100644
--- 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/transform/TransformToolIT.java
+++ 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/transform/TransformToolIT.java
@@ -32,6 +32,7 @@ import 
org.apache.phoenix.thirdparty.com.google.common.collect.Maps;
 import org.apache.hadoop.conf.Configuration;
 import org.apache.hadoop.hbase.TableName;
 import org.apache.hadoop.hbase.util.Bytes;
+import org.apache.hadoop.hbase.util.VersionInfo;
 import org.apache.phoenix.end2end.IndexToolIT;
 import org.apache.phoenix.end2end.ParallelStatsDisabledIT;
 import org.apache.phoenix.end2end.index.SingleCellIndexIT;
@@ -89,6 +90,7 @@ import static org.junit.Assert.assertFalse;
 import static org.junit.Assert.assertNotNull;
 import static org.junit.Assert.assertNull;
 import static org.junit.Assert.assertTrue;
+import static org.junit.Assume.assumeFalse;
 import static org.junit.Assert.fail;
 
 @Category(NeedsOwnMiniClusterTest.class)
@@ -132,7 +134,6 @@ public class TransformToolIT extends 
ParallelStatsDisabledIT {
         
serverProps.put(PhoenixConfigurationUtilHelper.TRANSFORM_MONITOR_ENABLED, 
Boolean.FALSE.toString());
         Map<String, String> clientProps = Maps.newHashMapWithExpectedSize(2);
         
clientProps.put(PhoenixConfigurationUtilHelper.TRANSFORM_MONITOR_ENABLED, 
Boolean.FALSE.toString());
-        clientProps.put("hbase.procedure.remote.dispatcher.delay.msec", "0");
         setUpTestDriver(new ReadOnlyProps(serverProps.entrySet().iterator()),
                 new ReadOnlyProps(clientProps.entrySet().iterator()));
     }
@@ -1163,6 +1164,10 @@ public class TransformToolIT extends 
ParallelStatsDisabledIT {
 
     @Test
     public void testInvalidRowsWithTableLevelMaxLookback() throws Exception {
+        assumeFalse(
+            "Skipping for HBase 2.6+. See PHOENIX-7355",
+            
VersionInfo.compareVersion(VersionInfo.getVersion().replace("-hadoop3", ""),
+                "2.6.0") >= 0);
         if (! mutable) {
             return;
         }

Reply via email to