mirror of
https://github.com/google/nomulus.git
synced 2025-07-26 04:28:34 +02:00
Reduce query batch size for BSA unavailables (#2313)
Query size is borderline too-large for the replica. At 50000, about 2 out of 30 took more than 30 seconds and were retried. Lower to 40000 and we will keep monitoring the executions.
This commit is contained in:
parent
5e36cf30c3
commit
f85cf57e36
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ public class UploadBsaUnavailableDomainsAction implements Runnable {
|
|||
|
||||
private static final FluentLogger logger = FluentLogger.forEnclosingClass();
|
||||
|
||||
private static final int BATCH_SIZE = 50000;
|
||||
private static final int BATCH_SIZE = 40000;
|
||||
|
||||
Clock clock;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue