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>
This commit is contained in:
Duo Zhang 2023-05-15 10:35:40 +08:00 committed by GitHub
parent fd4f984d87
commit 8b8c684bcc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;