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:
Duo Zhang 2023-05-15 10:35:40 +08:00
parent 409bafbf9c
commit 2fc73585a7
1 changed files with 3 additions and 3 deletions

View File

@ -62,9 +62,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;