1
0
mirror of https://github.com/google/nomulus synced 2025-12-23 14:25:44 +00: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:
Weimin Yu
2024-01-30 13:18:41 -05:00
committed by GitHub
parent 5e36cf30c3
commit f85cf57e36

View File

@@ -80,7 +80,7 @@ public class UploadBsaUnavailableDomainsAction implements Runnable {
private static final FluentLogger logger = FluentLogger.forEnclosingClass(); private static final FluentLogger logger = FluentLogger.forEnclosingClass();
private static final int BATCH_SIZE = 50000; private static final int BATCH_SIZE = 40000;
Clock clock; Clock clock;