mirror of
https://github.com/google/nomulus.git
synced 2025-08-06 09:45:19 +02:00
Add short-term host/contact caching for high-QPS domain mutations
After investigating common domain create/update command usage patterns by registrars, we noticed that it is frequent for a given registrar to reuse both hosts (using a standardized set of nameservers) as well as contacts (e.g. for privacy/proxy services). With these usage patterns, potential per-registrar throughput during high volume scenarios (i.e. first moments of General Availability) suffers from hitting hot keys in Datastore. The solution, implemented in this CL, is to add short-term in-memory caching for contacts and hosts, analogous to how we are already caching Registry and Registrar entities. These new cached paths are only used inside domain flows to determine existence and deleted/pending delete status of contacts and hosts. This is a potential loss of transactional consistency, but in practice it's hard to imagine this having negative effects, as contacts or hosts that are in use cannot be deleted, and caching would primarily affect widely used contacts and hosts. Note that this caching can be turned on or off through a configuration option, and by default would be off. We'd only want it on when we really needed it, i.e. during a big launch. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=187093378
This commit is contained in:
parent
cd9bd35a08
commit
ce136f9285
13 changed files with 461 additions and 16 deletions
|
@ -141,6 +141,28 @@ caching:
|
|||
# premium price entries that exist.
|
||||
staticPremiumListMaxCachedEntries: 200000
|
||||
|
||||
# Whether to enable caching of EPP resource entities and keys. Enabling this
|
||||
# caching allows for much higher domain create/update throughput when hosts
|
||||
# and/or contacts are being frequently used (which is commonly the case).
|
||||
# However, this may introduce transactional inconsistencies, such as allowing
|
||||
# hosts or contacts to be used that are actually deleted (though in practice
|
||||
# this will only happen for non-widely-used entities). Only set this to true
|
||||
# if you need the performance, i.e. if you need >10 domain mutations per
|
||||
# frequently used contact or host. This situation is typically caused by
|
||||
# registrars reusing the same contact/host across many operations, e.g. a
|
||||
# privacy/proxy contact or a common host pointing to a registrar-run
|
||||
# nameserver.
|
||||
eppResourceCachingEnabled: false
|
||||
|
||||
# Length of time that EPP resource entities and keys are cached in memory
|
||||
# before expiring.
|
||||
eppResourceCachingSeconds: 60
|
||||
|
||||
# The maximum number of EPP resource entities and keys to cache in memory.
|
||||
# LoadingCache evicts rarely-used keys first, so in practice this does not
|
||||
# have to be very large to achieve the vast majority of possible gains.
|
||||
eppResourceMaxCachedEntries: 500
|
||||
|
||||
oAuth:
|
||||
# OAuth scopes to detect on access tokens. Superset of requiredOauthScopes.
|
||||
availableOauthScopes:
|
||||
|
|
|
@ -18,6 +18,8 @@ caching:
|
|||
domainLabelCachingSeconds: 0
|
||||
singletonCachePersistSeconds: 0
|
||||
staticPremiumListMaxCachedEntries: 50
|
||||
eppResourceCachingEnabled: true
|
||||
eppResourceCachingSeconds: 0
|
||||
|
||||
braintree:
|
||||
merchantAccountIdsMap:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue