mirror of
https://github.com/google/nomulus.git
synced 2025-05-22 20:29:36 +02:00
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
70 lines
3.1 KiB
Java
70 lines
3.1 KiB
Java
// Copyright 2017 The Nomulus Authors. All Rights Reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package google.registry.model;
|
|
|
|
import static com.google.common.truth.Truth.assertThat;
|
|
import static google.registry.model.EppResource.CACHE_LOADER;
|
|
import static google.registry.testing.DatastoreHelper.persistActiveContact;
|
|
import static google.registry.testing.DatastoreHelper.persistActiveHost;
|
|
import static google.registry.testing.DatastoreHelper.persistResource;
|
|
import static java.util.concurrent.TimeUnit.DAYS;
|
|
|
|
import com.google.common.cache.CacheBuilder;
|
|
import com.google.common.collect.ImmutableList;
|
|
import com.googlecode.objectify.Key;
|
|
import google.registry.model.contact.ContactResource;
|
|
import google.registry.model.host.HostResource;
|
|
import org.junit.Test;
|
|
|
|
/** Unit tests for {@link EppResource}. */
|
|
public class EppResourceTest extends EntityTestCase {
|
|
|
|
@Test
|
|
public void test_loadCached_ignoresContactChange() {
|
|
setNonZeroCachingInterval();
|
|
ContactResource originalContact = persistActiveContact("contact123");
|
|
assertThat(EppResource.loadCached(ImmutableList.of(Key.create(originalContact))))
|
|
.containsExactly(Key.create(originalContact), originalContact);
|
|
ContactResource modifiedContact =
|
|
persistResource(originalContact.asBuilder().setEmailAddress("different@fake.lol").build());
|
|
assertThat(EppResource.loadCached(ImmutableList.of(Key.create(originalContact))))
|
|
.containsExactly(Key.create(originalContact), originalContact);
|
|
assertThat(
|
|
EppResourceUtils.loadByForeignKey(ContactResource.class, "contact123", clock.nowUtc()))
|
|
.isEqualTo(modifiedContact);
|
|
}
|
|
|
|
@Test
|
|
public void test_loadCached_ignoresHostChange() {
|
|
setNonZeroCachingInterval();
|
|
HostResource originalHost = persistActiveHost("ns1.example.com");
|
|
assertThat(EppResource.loadCached(ImmutableList.of(Key.create(originalHost))))
|
|
.containsExactly(Key.create(originalHost), originalHost);
|
|
HostResource modifiedHost =
|
|
persistResource(
|
|
originalHost.asBuilder().setLastTransferTime(clock.nowUtc().minusDays(60)).build());
|
|
assertThat(EppResource.loadCached(ImmutableList.of(Key.create(originalHost))))
|
|
.containsExactly(Key.create(originalHost), originalHost);
|
|
assertThat(
|
|
EppResourceUtils.loadByForeignKey(
|
|
HostResource.class, "ns1.example.com", clock.nowUtc()))
|
|
.isEqualTo(modifiedHost);
|
|
}
|
|
|
|
private static void setNonZeroCachingInterval() {
|
|
EppResource.cacheEppResources =
|
|
CacheBuilder.newBuilder().expireAfterWrite(1L, DAYS).build(CACHE_LOADER);
|
|
}
|
|
}
|