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 8b8c684bcc
)
This commit is contained in:
parent
409bafbf9c
commit
2fc73585a7
|
@ -62,9 +62,9 @@ public class TestFuzzyRowFilterEndToEndLarge {
|
||||||
|
|
||||||
private final static byte fuzzyValue = (byte) 63;
|
private final static byte fuzzyValue = (byte) 63;
|
||||||
|
|
||||||
private static int firstPartCardinality = 50;
|
private static int firstPartCardinality = 30;
|
||||||
private static int secondPartCardinality = 50;
|
private static int secondPartCardinality = 30;
|
||||||
private static int thirdPartCardinality = 50;
|
private static int thirdPartCardinality = 30;
|
||||||
private static int colQualifiersTotal = 5;
|
private static int colQualifiersTotal = 5;
|
||||||
private static int totalFuzzyKeys = thirdPartCardinality / 2;
|
private static int totalFuzzyKeys = thirdPartCardinality / 2;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue