From d213d9a1146e794322adbff1f0442bf5321ad6a5 Mon Sep 17 00:00:00 2001 From: mcilwain Date: Tue, 5 Apr 2016 07:45:16 -0700 Subject: [PATCH] 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 --- .../env/common/default/WEB-INF/queue.xml | 30 +++++++++++++++++++ .../registry/loadtest/LoadTestAction.java | 2 +- 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/java/com/google/domain/registry/env/common/default/WEB-INF/queue.xml b/java/com/google/domain/registry/env/common/default/WEB-INF/queue.xml index f7c1601e3..812ae5e3e 100644 --- a/java/com/google/domain/registry/env/common/default/WEB-INF/queue.xml +++ b/java/com/google/domain/registry/env/common/default/WEB-INF/queue.xml @@ -285,4 +285,34 @@ 500 + + load5 + 500/s + 500 + + + + load6 + 500/s + 500 + + + + load7 + 500/s + 500 + + + + load8 + 500/s + 500 + + + + load9 + 500/s + 500 + + diff --git a/java/com/google/domain/registry/loadtest/LoadTestAction.java b/java/com/google/domain/registry/loadtest/LoadTestAction.java index 01971448d..56c571d26 100644 --- a/java/com/google/domain/registry/loadtest/LoadTestAction.java +++ b/java/com/google/domain/registry/loadtest/LoadTestAction.java @@ -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;