mirror of
https://github.com/google/nomulus.git
synced 2025-05-14 16:37:13 +02:00
Increase Cloud DNS rate limit to 50 QPS
Following b/74072938, our quota for our main projects (prod, sandbox, alpha) is now 5000 queries per 100s, which allows us to increase our client-side rate limit accordingly. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=188026911
This commit is contained in:
parent
1013ef9bc0
commit
09e9823b9d
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ public final class CloudDnsWriterModule {
|
|||
static RateLimiter provideRateLimiter() {
|
||||
// This is the default max QPS for Cloud DNS. It can be increased by contacting the team
|
||||
// via the Quotas page on the Cloud Console.
|
||||
int cloudDnsMaxQps = 20;
|
||||
int cloudDnsMaxQps = 50;
|
||||
return RateLimiter.create(cloudDnsMaxQps);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue