Skip to content

Commit 2fc7358

Browse files
committed
HBASE-27864 Reduce the Cardinality for TestFuzzyRowFilterEndToEndLarge (#5237)
From 50^3 to 30^3, 125000 -> 27000 Signed-off-by: Liangjun He <heliangjun@apache.org> Signed-off-by: Xin Sun <ddupgs@gmail.com> (cherry picked from commit 8b8c684)
1 parent 409bafb commit 2fc7358

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

hbase-server/src/test/java/org/apache/hadoop/hbase/filter/TestFuzzyRowFilterEndToEndLarge.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ public class TestFuzzyRowFilterEndToEndLarge {
6262

6363
private final static byte fuzzyValue = (byte) 63;
6464

65-
private static int firstPartCardinality = 50;
66-
private static int secondPartCardinality = 50;
67-
private static int thirdPartCardinality = 50;
65+
private static int firstPartCardinality = 30;
66+
private static int secondPartCardinality = 30;
67+
private static int thirdPartCardinality = 30;
6868
private static int colQualifiersTotal = 5;
6969
private static int totalFuzzyKeys = thirdPartCardinality / 2;
7070

0 commit comments

Comments
 (0)