You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zh...@apache.org on 2023/05/15 02:51:19 UTC

[hbase] 03/03: HBASE-27864 Reduce the Cardinality for TestFuzzyRowFilterEndToEndLarge (#5237)

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

zhangduo pushed a commit to branch branch-2.4
in repository https://gitbox.apache.org/repos/asf/hbase.git

commit fcda18cbd0f1fd24959bdbf7c903e34f5113284f
Author: Duo Zhang <zh...@apache.org>
AuthorDate: Mon May 15 10:35:40 2023 +0800

    HBASE-27864 Reduce the Cardinality for TestFuzzyRowFilterEndToEndLarge (#5237)
    
    From 50^3 to 30^3, 125000 -> 27000
    
    Signed-off-by: Liangjun He <he...@apache.org>
    Signed-off-by: Xin Sun <dd...@gmail.com>
    (cherry picked from commit 8b8c684bcc0060af0d9244dba86b6a46d2cdc30e)
---
 .../apache/hadoop/hbase/filter/TestFuzzyRowFilterEndToEndLarge.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/filter/TestFuzzyRowFilterEndToEndLarge.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/filter/TestFuzzyRowFilterEndToEndLarge.java
index a2d4b2826dc..71481c502cd 100644
--- a/hbase-server/src/test/java/org/apache/hadoop/hbase/filter/TestFuzzyRowFilterEndToEndLarge.java
+++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/filter/TestFuzzyRowFilterEndToEndLarge.java
@@ -61,9 +61,9 @@ public class TestFuzzyRowFilterEndToEndLarge {
 
   private final static byte fuzzyValue = (byte) 63;
 
-  private static int firstPartCardinality = 50;
-  private static int secondPartCardinality = 50;
-  private static int thirdPartCardinality = 50;
+  private static int firstPartCardinality = 30;
+  private static int secondPartCardinality = 30;
+  private static int thirdPartCardinality = 30;
   private static int colQualifiersTotal = 5;
   private static int totalFuzzyKeys = thirdPartCardinality / 2;