mirror of
https://github.com/google/nomulus.git
synced 2025-05-15 08:57:12 +02:00
Restore the number of load test queues to 10
I'm running a read-only load test right now and I was running into unacceptably low limits with only five load test queues to execute in. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=119048442
This commit is contained in:
parent
e6d3f42e60
commit
d213d9a114
2 changed files with 31 additions and 1 deletions
|
@ -285,4 +285,34 @@
|
|||
<bucket-size>500</bucket-size>
|
||||
</queue>
|
||||
|
||||
<queue>
|
||||
<name>load5</name>
|
||||
<rate>500/s</rate>
|
||||
<bucket-size>500</bucket-size>
|
||||
</queue>
|
||||
|
||||
<queue>
|
||||
<name>load6</name>
|
||||
<rate>500/s</rate>
|
||||
<bucket-size>500</bucket-size>
|
||||
</queue>
|
||||
|
||||
<queue>
|
||||
<name>load7</name>
|
||||
<rate>500/s</rate>
|
||||
<bucket-size>500</bucket-size>
|
||||
</queue>
|
||||
|
||||
<queue>
|
||||
<name>load8</name>
|
||||
<rate>500/s</rate>
|
||||
<bucket-size>500</bucket-size>
|
||||
</queue>
|
||||
|
||||
<queue>
|
||||
<name>load9</name>
|
||||
<rate>500/s</rate>
|
||||
<bucket-size>500</bucket-size>
|
||||
</queue>
|
||||
|
||||
</queue-entries>
|
||||
|
|
|
@ -50,7 +50,7 @@ import javax.inject.Inject;
|
|||
automaticallyPrintOk = true)
|
||||
public class LoadTestAction implements Runnable {
|
||||
|
||||
private static final int NUM_QUEUES = 5;
|
||||
private static final int NUM_QUEUES = 10;
|
||||
private static final int ARBITRARY_VALID_HOST_LENGTH = 40;
|
||||
private static final int MAX_CONTACT_LENGTH = 13;
|
||||
private static final int MAX_DOMAIN_LABEL_LENGTH = 63;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue