HBASE-27661 Set size of systable queue in UT (#5053)

Signed-off-by: Duo Zhang <zhangduo@apache.org>
This commit is contained in:
tianhang 2023-02-25 23:15:09 +08:00 committed by GitHub
parent 36bb0d1f6c
commit bc31e68e85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -79,6 +79,7 @@ public class TestSlowLogAccessor {
conf.setBoolean(HConstants.SLOW_LOG_SYS_TABLE_ENABLED_KEY, true);
conf.setInt("hbase.slowlog.systable.chore.duration", 900);
conf.setInt("hbase.regionserver.slowlog.ringbuffer.size", 50000);
conf.setInt("hbase.regionserver.slowlog.systable.queue.size", 5000);
HBASE_TESTING_UTILITY.startMiniCluster();
}