Return-Path: X-Original-To: apmail-curator-commits-archive@minotaur.apache.org Delivered-To: apmail-curator-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4F56617D90 for ; Wed, 6 May 2015 04:56:00 +0000 (UTC) Received: (qmail 67888 invoked by uid 500); 6 May 2015 04:56:00 -0000 Delivered-To: apmail-curator-commits-archive@curator.apache.org Received: (qmail 67821 invoked by uid 500); 6 May 2015 04:56:00 -0000 Mailing-List: contact commits-help@curator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@curator.apache.org Delivered-To: mailing list commits@curator.apache.org Received: (qmail 66800 invoked by uid 99); 6 May 2015 04:55:59 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 May 2015 04:55:59 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 4D808E35A3; Wed, 6 May 2015 04:55:59 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: randgalt@apache.org To: commits@curator.apache.org Date: Wed, 06 May 2015 04:56:22 -0000 Message-Id: <80a4e5f566f14c15aab0aaa9890793a8@git.apache.org> In-Reply-To: <34422cdf5d34428891ea339c0ed20424@git.apache.org> References: <34422cdf5d34428891ea339c0ed20424@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [25/50] curator git commit: Concurrent registrations/unregistrations and connection issues can cause inconsistent state. Change to a model whereby 'unregistering' an instance doesn't remove it from management but changes the state. Instance will still be Concurrent registrations/unregistrations and connection issues can cause inconsistent state. Change to a model whereby 'unregistering' an instance doesn't remove it from management but changes the state. Instance will still be managed for a period of time and clean after a reasonable period Project: http://git-wip-us.apache.org/repos/asf/curator/repo Commit: http://git-wip-us.apache.org/repos/asf/curator/commit/f489dfeb Tree: http://git-wip-us.apache.org/repos/asf/curator/tree/f489dfeb Diff: http://git-wip-us.apache.org/repos/asf/curator/diff/f489dfeb Branch: refs/heads/CURATOR-160 Commit: f489dfebeed4ecf004ded37a0f05a0a8a2dc7e6d Parents: 0178c83 Author: randgalt Authored: Tue Apr 21 15:13:26 2015 -0500 Committer: randgalt Committed: Tue Apr 21 15:13:26 2015 -0500 ---------------------------------------------------------------------- .../discovery/details/ServiceDiscoveryImpl.java | 190 ++++++--- .../x/discovery/TestServiceDiscovery.java | 368 ----------------- .../discovery/details/TestServiceDiscovery.java | 402 +++++++++++++++++++ 3 files changed, 546 insertions(+), 414 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/curator/blob/f489dfeb/curator-x-discovery/src/main/java/org/apache/curator/x/discovery/details/ServiceDiscoveryImpl.java ---------------------------------------------------------------------- diff --git a/curator-x-discovery/src/main/java/org/apache/curator/x/discovery/details/ServiceDiscoveryImpl.java b/curator-x-discovery/src/main/java/org/apache/curator/x/discovery/details/ServiceDiscoveryImpl.java index 824eb75..f53c7ce 100644 --- a/curator-x-discovery/src/main/java/org/apache/curator/x/discovery/details/ServiceDiscoveryImpl.java +++ b/curator-x-discovery/src/main/java/org/apache/curator/x/discovery/details/ServiceDiscoveryImpl.java @@ -50,7 +50,10 @@ import java.io.IOException; import java.util.Collection; import java.util.Iterator; import java.util.List; -import java.util.Map; +import java.util.concurrent.ConcurrentMap; +import java.util.concurrent.TimeUnit; +import java.util.concurrent.atomic.AtomicLong; +import java.util.concurrent.atomic.AtomicReference; /** * A mechanism to register and query service instances using ZooKeeper @@ -61,10 +64,11 @@ public class ServiceDiscoveryImpl implements ServiceDiscovery private final CuratorFramework client; private final String basePath; private final InstanceSerializer serializer; - private final Map> services = Maps.newConcurrentMap(); - private final Map watchedServices; + private final ConcurrentMap> services = Maps.newConcurrentMap(); private final Collection> caches = Sets.newSetFromMap(Maps., Boolean>newConcurrentMap()); private final Collection> providers = Sets.newSetFromMap(Maps., Boolean>newConcurrentMap()); + private final boolean watchInstances; + private final AtomicLong lastCleanMs = new AtomicLong(System.currentTimeMillis()); private final ConnectionStateListener connectionStateListener = new ConnectionStateListener() { @Override @@ -85,6 +89,35 @@ public class ServiceDiscoveryImpl implements ServiceDiscovery } }; + private static final int CLEAN_THRESHOLD_MS = Integer.getInteger("curator-discovery-clean-threshold-ms", (int)TimeUnit.MINUTES.toMillis(5)); + + private enum State + { + NEW, + REGISTERED, + UNREGISTERED + } + + private static class Holder + { + private final AtomicReference> service = new AtomicReference>(); + private final AtomicReference cache = new AtomicReference(); + private final AtomicReference state = new AtomicReference(); + private final AtomicLong stateChangeMs = new AtomicLong(); + + public Holder(ServiceInstance instance) + { + service.set(instance); + setState(State.NEW); + } + + public void setState(State state) + { + this.state.set(state); + stateChangeMs.set(System.currentTimeMillis()); + } + } + /** * @param client the client * @param basePath base path to store data @@ -94,10 +127,10 @@ public class ServiceDiscoveryImpl implements ServiceDiscovery */ public ServiceDiscoveryImpl(CuratorFramework client, String basePath, InstanceSerializer serializer, ServiceInstance thisInstance, boolean watchInstances) { + this.watchInstances = watchInstances; this.client = Preconditions.checkNotNull(client, "client cannot be null"); this.basePath = Preconditions.checkNotNull(basePath, "basePath cannot be null"); this.serializer = Preconditions.checkNotNull(serializer, "serializer cannot be null"); - watchedServices = watchInstances ? Maps.newConcurrentMap() : null; if ( thisInstance != null ) { setService(thisInstance); @@ -134,26 +167,12 @@ public class ServiceDiscoveryImpl implements ServiceDiscovery { CloseableUtils.closeQuietly(provider); } - if ( watchedServices != null ) - { - for ( NodeCache nodeCache : watchedServices.values() ) - { - CloseableUtils.closeQuietly(nodeCache); - } - } - Iterator> it = services.values().iterator(); - while ( it.hasNext() ) + for ( Holder holder : services.values() ) { - // Should not use unregisterService because of potential ConcurrentModificationException - // so we in-line the bulk of the method here - ServiceInstance service = it.next(); - String path = pathForInstance(service.getName(), service.getId()); - boolean doRemove = true; - try { - client.delete().forPath(path); + internalUnregisterService(holder); } catch ( KeeperException.NoNodeException ignore ) { @@ -161,13 +180,7 @@ public class ServiceDiscoveryImpl implements ServiceDiscovery } catch ( Exception e ) { - doRemove = false; - log.error("Could not unregister instance: " + service.getName(), e); - } - - if ( doRemove ) - { - it.remove(); + log.error("Could not unregister instance: " + holder.service.get().getName(), e); } } @@ -183,6 +196,8 @@ public class ServiceDiscoveryImpl implements ServiceDiscovery @Override public void registerService(ServiceInstance service) throws Exception { + clean(); + setService(service); internalRegisterService(service); } @@ -190,10 +205,18 @@ public class ServiceDiscoveryImpl implements ServiceDiscovery @Override public void updateService(ServiceInstance service) throws Exception { + clean(); + + Holder holder = getOrMakeHolder(service, null); + if ( holder.state.get() == State.UNREGISTERED ) + { + throw new Exception("Service has been unregistered: " + service); + } + + holder.service.set(service); byte[] bytes = serializer.serialize(service); String path = pathForInstance(service.getName(), service.getId()); client.setData().forPath(path, bytes); - services.put(service.getId(), service); } @VisibleForTesting @@ -228,17 +251,9 @@ public class ServiceDiscoveryImpl implements ServiceDiscovery @Override public void unregisterService(ServiceInstance service) throws Exception { - services.remove(service.getId()); + clean(); - String path = pathForInstance(service.getName(), service.getId()); - try - { - client.delete().guaranteed().forPath(path); - } - catch ( KeeperException.NoNodeException ignore ) - { - // ignore - } + internalUnregisterService(getOrMakeHolder(service, null)); } /** @@ -249,6 +264,8 @@ public class ServiceDiscoveryImpl implements ServiceDiscovery @Override public ServiceProviderBuilder serviceProviderBuilder() { + clean(); + return new ServiceProviderBuilderImpl(this) .providerStrategy(new RoundRobinStrategy()) .threadFactory(ThreadUtils.newThreadFactory("ServiceProvider")); @@ -262,6 +279,8 @@ public class ServiceDiscoveryImpl implements ServiceDiscovery @Override public ServiceCacheBuilder serviceCacheBuilder() { + clean(); + return new ServiceCacheBuilderImpl(this) .threadFactory(ThreadUtils.newThreadFactory("ServiceCache")); } @@ -275,6 +294,8 @@ public class ServiceDiscoveryImpl implements ServiceDiscovery @Override public Collection queryForNames() throws Exception { + clean(); + List names = client.getChildren().forPath(basePath); return ImmutableList.copyOf(names); } @@ -303,6 +324,8 @@ public class ServiceDiscoveryImpl implements ServiceDiscovery @Override public ServiceInstance queryForInstance(String name, String id) throws Exception { + clean(); + String path = pathForInstance(name, id); try { @@ -338,6 +361,8 @@ public class ServiceDiscoveryImpl implements ServiceDiscovery CuratorFramework getClient() { + clean(); + return client; } @@ -353,6 +378,8 @@ public class ServiceDiscoveryImpl implements ServiceDiscovery List> queryForInstances(String name, Watcher watcher) throws Exception { + clean(); + ImmutableList.Builder> builder = ImmutableList.builder(); String path = pathForName(name); List instanceIds; @@ -384,6 +411,12 @@ public class ServiceDiscoveryImpl implements ServiceDiscovery return builder.build(); } + @VisibleForTesting + int debugServicesQty() + { + return services.size(); + } + private List getChildrenWatched(String path, Watcher watcher, boolean recurse) throws Exception { List instanceIds; @@ -422,23 +455,29 @@ public class ServiceDiscoveryImpl implements ServiceDiscovery @VisibleForTesting ServiceInstance getRegisteredService(String id) { - return services.get(id); + Holder holder = services.get(id); + return ((holder != null) && (holder.state.get() == State.REGISTERED)) ? holder.service.get() : null; } private void reRegisterServices() throws Exception { - for ( ServiceInstance service : services.values() ) + for ( Holder service : services.values() ) { - internalRegisterService(service); + if ( service.state.get() == State.REGISTERED ) + { + internalRegisterService(service.service.get()); + } } } private void setService(final ServiceInstance instance) { - services.put(instance.getId(), instance); - if ( watchedServices != null ) + final NodeCache nodeCache = watchInstances ? new NodeCache(client, pathForInstance(instance.getName(), instance.getId())) : null; + Holder holder = getOrMakeHolder(instance, nodeCache); + holder.setState(State.REGISTERED); + + if ( nodeCache != null ) { - final NodeCache nodeCache = new NodeCache(client, pathForInstance(instance.getName(), instance.getId())); try { nodeCache.start(true); @@ -455,7 +494,11 @@ public class ServiceDiscoveryImpl implements ServiceDiscovery if ( nodeCache.getCurrentData() != null ) { ServiceInstance newInstance = serializer.deserialize(nodeCache.getCurrentData().getData()); - services.put(newInstance.getId(), newInstance); + Holder holder = services.get(newInstance.getId()); + if ( holder != null ) + { + holder.service.set(newInstance); + } } else { @@ -464,7 +507,62 @@ public class ServiceDiscoveryImpl implements ServiceDiscovery } }; nodeCache.getListenable().addListener(listener); - watchedServices.put(instance.getId(), nodeCache); + } + } + + private Holder getOrMakeHolder(ServiceInstance instance, NodeCache nodeCache) + { + Holder newHolder = new Holder(instance); + Holder oldHolder = services.putIfAbsent(instance.getId(), newHolder); + Holder useHolder = (oldHolder != null) ? oldHolder : newHolder; + useHolder.cache.set(nodeCache); + return useHolder; + } + + private void clean() + { + long localLastCleanMs = lastCleanMs.get(); + long now = System.currentTimeMillis(); + long elpased = now - localLastCleanMs; + if ( (elpased >= CLEAN_THRESHOLD_MS) && lastCleanMs.compareAndSet(localLastCleanMs, now + 1) ) + { + Iterator> iterator = services.values().iterator(); + while ( iterator.hasNext() ) + { + Holder holder = iterator.next(); + if ( holder.state.get() == State.UNREGISTERED ) + { + long elapsed = System.currentTimeMillis() - holder.stateChangeMs.get(); + if ( elapsed >= CLEAN_THRESHOLD_MS ) + { + iterator.remove(); + } + } + } + } + } + + private void internalUnregisterService(Holder holder) throws Exception + { + if ( holder != null ) + { + holder.setState(State.UNREGISTERED); + NodeCache cache = holder.cache.getAndSet(null); + if ( cache != null ) + { + CloseableUtils.closeQuietly(cache); + } + + ServiceInstance service = holder.service.get(); + String path = pathForInstance(service.getName(), service.getId()); + try + { + client.delete().guaranteed().forPath(path); + } + catch ( KeeperException.NoNodeException ignore ) + { + // ignore + } } } } http://git-wip-us.apache.org/repos/asf/curator/blob/f489dfeb/curator-x-discovery/src/test/java/org/apache/curator/x/discovery/TestServiceDiscovery.java ---------------------------------------------------------------------- diff --git a/curator-x-discovery/src/test/java/org/apache/curator/x/discovery/TestServiceDiscovery.java b/curator-x-discovery/src/test/java/org/apache/curator/x/discovery/TestServiceDiscovery.java deleted file mode 100644 index 3b45494..0000000 --- a/curator-x-discovery/src/test/java/org/apache/curator/x/discovery/TestServiceDiscovery.java +++ /dev/null @@ -1,368 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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 org.apache.curator.x.discovery; - -import com.google.common.collect.Lists; -import com.google.common.collect.Sets; -import org.apache.curator.framework.CuratorFramework; -import org.apache.curator.framework.CuratorFrameworkFactory; -import org.apache.curator.retry.RetryOneTime; -import org.apache.curator.test.BaseClassForTests; -import org.apache.curator.test.KillSession; -import org.apache.curator.test.Timing; -import org.apache.curator.utils.CloseableUtils; -import org.apache.curator.x.discovery.details.InstanceSerializer; -import org.apache.curator.x.discovery.details.JsonInstanceSerializer; -import org.apache.curator.x.discovery.details.ServiceDiscoveryImpl; -import org.testng.Assert; -import org.testng.annotations.Test; -import java.io.Closeable; -import java.util.Arrays; -import java.util.Collections; -import java.util.Comparator; -import java.util.List; -import java.util.concurrent.CountDownLatch; -import java.util.concurrent.Semaphore; -import java.util.concurrent.TimeUnit; - -public class TestServiceDiscovery extends BaseClassForTests -{ - private static final Comparator> comparator = new Comparator>() - { - @Override - public int compare(ServiceInstance o1, ServiceInstance o2) - { - return o1.getId().compareTo(o2.getId()); - } - }; - - @Test - public void testCrashedServerMultiInstances() throws Exception - { - List closeables = Lists.newArrayList(); - try - { - Timing timing = new Timing(); - CuratorFramework client = CuratorFrameworkFactory.newClient(server.getConnectString(), timing.session(), timing.connection(), new RetryOneTime(1)); - closeables.add(client); - client.start(); - - final Semaphore semaphore = new Semaphore(0); - ServiceInstance instance1 = ServiceInstance.builder().payload("thing").name("test").port(10064).build(); - ServiceInstance instance2 = ServiceInstance.builder().payload("thing").name("test").port(10065).build(); - ServiceDiscovery discovery = new ServiceDiscoveryImpl(client, "/test", new JsonInstanceSerializer(String.class), instance1, false) - { - @Override - protected void internalRegisterService(ServiceInstance service) throws Exception - { - super.internalRegisterService(service); - semaphore.release(); - } - }; - closeables.add(discovery); - discovery.start(); - discovery.registerService(instance2); - - timing.acquireSemaphore(semaphore, 2); - Assert.assertEquals(discovery.queryForInstances("test").size(), 2); - - KillSession.kill(client.getZookeeperClient().getZooKeeper(), server.getConnectString()); - server.stop(); - - server.restart(); - closeables.add(server); - - timing.acquireSemaphore(semaphore, 2); - Assert.assertEquals(discovery.queryForInstances("test").size(), 2); - } - finally - { - for ( Closeable c : closeables ) - { - CloseableUtils.closeQuietly(c); - } - } - } - - @Test - public void testCrashedServer() throws Exception - { - List closeables = Lists.newArrayList(); - try - { - Timing timing = new Timing(); - CuratorFramework client = CuratorFrameworkFactory.newClient(server.getConnectString(), timing.session(), timing.connection(), new RetryOneTime(1)); - closeables.add(client); - client.start(); - - final Semaphore semaphore = new Semaphore(0); - ServiceInstance instance = ServiceInstance.builder().payload("thing").name("test").port(10064).build(); - ServiceDiscovery discovery = new ServiceDiscoveryImpl(client, "/test", new JsonInstanceSerializer(String.class), instance, false) - { - @Override - protected void internalRegisterService(ServiceInstance service) throws Exception - { - super.internalRegisterService(service); - semaphore.release(); - } - }; - closeables.add(discovery); - discovery.start(); - - timing.acquireSemaphore(semaphore); - Assert.assertEquals(discovery.queryForInstances("test").size(), 1); - - KillSession.kill(client.getZookeeperClient().getZooKeeper(), server.getConnectString()); - server.stop(); - - server.restart(); - closeables.add(server); - - timing.acquireSemaphore(semaphore); - Assert.assertEquals(discovery.queryForInstances("test").size(), 1); - } - finally - { - for ( Closeable c : closeables ) - { - CloseableUtils.closeQuietly(c); - } - } - } - - @Test - public void testCrashedInstance() throws Exception - { - List closeables = Lists.newArrayList(); - try - { - Timing timing = new Timing(); - - CuratorFramework client = CuratorFrameworkFactory.newClient(server.getConnectString(), timing.session(), timing.connection(), new RetryOneTime(1)); - closeables.add(client); - client.start(); - - ServiceInstance instance = ServiceInstance.builder().payload("thing").name("test").port(10064).build(); - ServiceDiscovery discovery = new ServiceDiscoveryImpl(client, "/test", new JsonInstanceSerializer(String.class), instance, false); - closeables.add(discovery); - discovery.start(); - - Assert.assertEquals(discovery.queryForInstances("test").size(), 1); - - KillSession.kill(client.getZookeeperClient().getZooKeeper(), server.getConnectString()); - Thread.sleep(timing.multiple(1.5).session()); - - Assert.assertEquals(discovery.queryForInstances("test").size(), 1); - } - finally - { - Collections.reverse(closeables); - for ( Closeable c : closeables ) - { - CloseableUtils.closeQuietly(c); - } - } - } - - @Test - public void testMultipleInstances() throws Exception - { - final String SERVICE_ONE = "one"; - final String SERVICE_TWO = "two"; - - List closeables = Lists.newArrayList(); - try - { - CuratorFramework client = CuratorFrameworkFactory.newClient(server.getConnectString(), new RetryOneTime(1)); - closeables.add(client); - client.start(); - - ServiceInstance s1_i1 = ServiceInstance.builder().name(SERVICE_ONE).build(); - ServiceInstance s1_i2 = ServiceInstance.builder().name(SERVICE_ONE).build(); - ServiceInstance s2_i1 = ServiceInstance.builder().name(SERVICE_TWO).build(); - ServiceInstance s2_i2 = ServiceInstance.builder().name(SERVICE_TWO).build(); - - ServiceDiscovery discovery = ServiceDiscoveryBuilder.builder(Void.class).client(client).basePath("/test").build(); - closeables.add(discovery); - discovery.start(); - - discovery.registerService(s1_i1); - discovery.registerService(s1_i2); - discovery.registerService(s2_i1); - discovery.registerService(s2_i2); - - Assert.assertEquals(Sets.newHashSet(discovery.queryForNames()), Sets.newHashSet(SERVICE_ONE, SERVICE_TWO)); - - List> list = Lists.newArrayList(); - list.add(s1_i1); - list.add(s1_i2); - Collections.sort(list, comparator); - List> queriedInstances = Lists.newArrayList(discovery.queryForInstances(SERVICE_ONE)); - Collections.sort(queriedInstances, comparator); - Assert.assertEquals(queriedInstances, list, String.format("Not equal l: %s - d: %s", list, queriedInstances)); - - list.clear(); - - list.add(s2_i1); - list.add(s2_i2); - Collections.sort(list, comparator); - queriedInstances = Lists.newArrayList(discovery.queryForInstances(SERVICE_TWO)); - Collections.sort(queriedInstances, comparator); - Assert.assertEquals(queriedInstances, list, String.format("Not equal 2: %s - d: %s", list, queriedInstances)); - } - finally - { - Collections.reverse(closeables); - for ( Closeable c : closeables ) - { - CloseableUtils.closeQuietly(c); - } - } - } - - @Test - public void testBasic() throws Exception - { - List closeables = Lists.newArrayList(); - try - { - CuratorFramework client = CuratorFrameworkFactory.newClient(server.getConnectString(), new RetryOneTime(1)); - closeables.add(client); - client.start(); - - ServiceInstance instance = ServiceInstance.builder().payload("thing").name("test").port(10064).build(); - ServiceDiscovery discovery = ServiceDiscoveryBuilder.builder(String.class).basePath("/test").client(client).thisInstance(instance).build(); - closeables.add(discovery); - discovery.start(); - - Assert.assertEquals(discovery.queryForNames(), Arrays.asList("test")); - - List> list = Lists.newArrayList(); - list.add(instance); - Assert.assertEquals(discovery.queryForInstances("test"), list); - } - finally - { - Collections.reverse(closeables); - for ( Closeable c : closeables ) - { - CloseableUtils.closeQuietly(c); - } - } - } - - @Test - public void testNoServerOnStart() throws Exception - { - server.stop(); - List closeables = Lists.newArrayList(); - try - { - CuratorFramework client = CuratorFrameworkFactory.newClient(server.getConnectString(), new RetryOneTime(1)); - closeables.add(client); - client.start(); - - ServiceInstance instance = ServiceInstance.builder().payload("thing").name("test").port(10064).build(); - ServiceDiscovery discovery = ServiceDiscoveryBuilder.builder(String.class).basePath("/test").client(client).thisInstance(instance).build(); - closeables.add(discovery); - discovery.start(); - - server.restart(); - Assert.assertEquals(discovery.queryForNames(), Arrays.asList("test")); - - List> list = Lists.newArrayList(); - list.add(instance); - Assert.assertEquals(discovery.queryForInstances("test"), list); - } - finally - { - Collections.reverse(closeables); - for ( Closeable c : closeables ) - { - CloseableUtils.closeQuietly(c); - } - } - } - - // CURATOR-164 - @Test - public void testUnregisterService() throws Exception - { - final String name = "name"; - - final CountDownLatch restartLatch = new CountDownLatch(1); - List closeables = Lists.newArrayList(); - - InstanceSerializer slowSerializer = new JsonInstanceSerializer(String.class) - { - private boolean first = true; - - @Override - public byte[] serialize(ServiceInstance instance) throws Exception - { - if ( first ) - { - System.out.println("Serializer first registration."); - first = false; - } - else - { - System.out.println("Waiting for reconnect to finish."); - // Simulate the serialize method being slow. - // This could just be a timed wait, but that's kind of non-deterministic. - restartLatch.await(); - } - return super.serialize(instance); - } - }; - - try - { - CuratorFramework client = CuratorFrameworkFactory.newClient(server.getConnectString(), new RetryOneTime(1)); - closeables.add(client); - client.start(); - - ServiceInstance instance = ServiceInstance.builder().payload("thing").name(name).port(10064).build(); - ServiceDiscovery discovery = ServiceDiscoveryBuilder.builder(String.class).basePath("/test").client(client).thisInstance(instance).serializer(slowSerializer).watchInstances(true).build(); - closeables.add(discovery); - discovery.start(); - - Assert.assertFalse(discovery.queryForInstances(name).isEmpty(), "Service should start registered."); - - server.stop(); - server.restart(); - - discovery.unregisterService(instance); - restartLatch.countDown(); - - new Timing().sleepABit(); // Wait for the rest of registration to finish. - - Assert.assertTrue(discovery.queryForInstances(name).isEmpty(), "Service should have unregistered."); - } - finally - { - Collections.reverse(closeables); - for ( Closeable c : closeables ) - { - CloseableUtils.closeQuietly(c); - } - } - } -} http://git-wip-us.apache.org/repos/asf/curator/blob/f489dfeb/curator-x-discovery/src/test/java/org/apache/curator/x/discovery/details/TestServiceDiscovery.java ---------------------------------------------------------------------- diff --git a/curator-x-discovery/src/test/java/org/apache/curator/x/discovery/details/TestServiceDiscovery.java b/curator-x-discovery/src/test/java/org/apache/curator/x/discovery/details/TestServiceDiscovery.java new file mode 100644 index 0000000..2808c5c --- /dev/null +++ b/curator-x-discovery/src/test/java/org/apache/curator/x/discovery/details/TestServiceDiscovery.java @@ -0,0 +1,402 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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 org.apache.curator.x.discovery.details; + +import com.google.common.collect.Lists; +import com.google.common.collect.Sets; +import org.apache.curator.framework.CuratorFramework; +import org.apache.curator.framework.CuratorFrameworkFactory; +import org.apache.curator.retry.RetryOneTime; +import org.apache.curator.test.BaseClassForTests; +import org.apache.curator.test.KillSession; +import org.apache.curator.test.Timing; +import org.apache.curator.utils.CloseableUtils; +import org.apache.curator.x.discovery.ServiceDiscovery; +import org.apache.curator.x.discovery.ServiceDiscoveryBuilder; +import org.apache.curator.x.discovery.ServiceInstance; +import org.apache.curator.x.discovery.details.InstanceSerializer; +import org.apache.curator.x.discovery.details.JsonInstanceSerializer; +import org.apache.curator.x.discovery.details.ServiceDiscoveryImpl; +import org.testng.Assert; +import org.testng.annotations.Test; +import java.io.Closeable; +import java.util.Collections; +import java.util.Comparator; +import java.util.List; +import java.util.concurrent.CountDownLatch; +import java.util.concurrent.Semaphore; + +public class TestServiceDiscovery extends BaseClassForTests +{ + private static final Comparator> comparator = new Comparator>() + { + @Override + public int compare(ServiceInstance o1, ServiceInstance o2) + { + return o1.getId().compareTo(o2.getId()); + } + }; + + @Test + public void testCrashedServerMultiInstances() throws Exception + { + List closeables = Lists.newArrayList(); + try + { + Timing timing = new Timing(); + CuratorFramework client = CuratorFrameworkFactory.newClient(server.getConnectString(), timing.session(), timing.connection(), new RetryOneTime(1)); + closeables.add(client); + client.start(); + + final Semaphore semaphore = new Semaphore(0); + ServiceInstance instance1 = ServiceInstance.builder().payload("thing").name("test").port(10064).build(); + ServiceInstance instance2 = ServiceInstance.builder().payload("thing").name("test").port(10065).build(); + ServiceDiscovery discovery = new ServiceDiscoveryImpl(client, "/test", new JsonInstanceSerializer(String.class), instance1, false) + { + @Override + protected void internalRegisterService(ServiceInstance service) throws Exception + { + super.internalRegisterService(service); + semaphore.release(); + } + }; + closeables.add(discovery); + discovery.start(); + discovery.registerService(instance2); + + timing.acquireSemaphore(semaphore, 2); + Assert.assertEquals(discovery.queryForInstances("test").size(), 2); + + KillSession.kill(client.getZookeeperClient().getZooKeeper(), server.getConnectString()); + server.stop(); + + server.restart(); + closeables.add(server); + + timing.acquireSemaphore(semaphore, 2); + Assert.assertEquals(discovery.queryForInstances("test").size(), 2); + } + finally + { + for ( Closeable c : closeables ) + { + CloseableUtils.closeQuietly(c); + } + } + } + + @Test + public void testCrashedServer() throws Exception + { + List closeables = Lists.newArrayList(); + try + { + Timing timing = new Timing(); + CuratorFramework client = CuratorFrameworkFactory.newClient(server.getConnectString(), timing.session(), timing.connection(), new RetryOneTime(1)); + closeables.add(client); + client.start(); + + final Semaphore semaphore = new Semaphore(0); + ServiceInstance instance = ServiceInstance.builder().payload("thing").name("test").port(10064).build(); + ServiceDiscovery discovery = new ServiceDiscoveryImpl(client, "/test", new JsonInstanceSerializer(String.class), instance, false) + { + @Override + protected void internalRegisterService(ServiceInstance service) throws Exception + { + super.internalRegisterService(service); + semaphore.release(); + } + }; + closeables.add(discovery); + discovery.start(); + + timing.acquireSemaphore(semaphore); + Assert.assertEquals(discovery.queryForInstances("test").size(), 1); + + KillSession.kill(client.getZookeeperClient().getZooKeeper(), server.getConnectString()); + server.stop(); + + server.restart(); + closeables.add(server); + + timing.acquireSemaphore(semaphore); + Assert.assertEquals(discovery.queryForInstances("test").size(), 1); + } + finally + { + for ( Closeable c : closeables ) + { + CloseableUtils.closeQuietly(c); + } + } + } + + @Test + public void testCrashedInstance() throws Exception + { + List closeables = Lists.newArrayList(); + try + { + Timing timing = new Timing(); + + CuratorFramework client = CuratorFrameworkFactory.newClient(server.getConnectString(), timing.session(), timing.connection(), new RetryOneTime(1)); + closeables.add(client); + client.start(); + + ServiceInstance instance = ServiceInstance.builder().payload("thing").name("test").port(10064).build(); + ServiceDiscovery discovery = new ServiceDiscoveryImpl(client, "/test", new JsonInstanceSerializer(String.class), instance, false); + closeables.add(discovery); + discovery.start(); + + Assert.assertEquals(discovery.queryForInstances("test").size(), 1); + + KillSession.kill(client.getZookeeperClient().getZooKeeper(), server.getConnectString()); + Thread.sleep(timing.multiple(1.5).session()); + + Assert.assertEquals(discovery.queryForInstances("test").size(), 1); + } + finally + { + Collections.reverse(closeables); + for ( Closeable c : closeables ) + { + CloseableUtils.closeQuietly(c); + } + } + } + + @Test + public void testMultipleInstances() throws Exception + { + final String SERVICE_ONE = "one"; + final String SERVICE_TWO = "two"; + + List closeables = Lists.newArrayList(); + try + { + CuratorFramework client = CuratorFrameworkFactory.newClient(server.getConnectString(), new RetryOneTime(1)); + closeables.add(client); + client.start(); + + ServiceInstance s1_i1 = ServiceInstance.builder().name(SERVICE_ONE).build(); + ServiceInstance s1_i2 = ServiceInstance.builder().name(SERVICE_ONE).build(); + ServiceInstance s2_i1 = ServiceInstance.builder().name(SERVICE_TWO).build(); + ServiceInstance s2_i2 = ServiceInstance.builder().name(SERVICE_TWO).build(); + + ServiceDiscovery discovery = ServiceDiscoveryBuilder.builder(Void.class).client(client).basePath("/test").build(); + closeables.add(discovery); + discovery.start(); + + discovery.registerService(s1_i1); + discovery.registerService(s1_i2); + discovery.registerService(s2_i1); + discovery.registerService(s2_i2); + + Assert.assertEquals(Sets.newHashSet(discovery.queryForNames()), Sets.newHashSet(SERVICE_ONE, SERVICE_TWO)); + + List> list = Lists.newArrayList(); + list.add(s1_i1); + list.add(s1_i2); + Collections.sort(list, comparator); + List> queriedInstances = Lists.newArrayList(discovery.queryForInstances(SERVICE_ONE)); + Collections.sort(queriedInstances, comparator); + Assert.assertEquals(queriedInstances, list, String.format("Not equal l: %s - d: %s", list, queriedInstances)); + + list.clear(); + + list.add(s2_i1); + list.add(s2_i2); + Collections.sort(list, comparator); + queriedInstances = Lists.newArrayList(discovery.queryForInstances(SERVICE_TWO)); + Collections.sort(queriedInstances, comparator); + Assert.assertEquals(queriedInstances, list, String.format("Not equal 2: %s - d: %s", list, queriedInstances)); + } + finally + { + Collections.reverse(closeables); + for ( Closeable c : closeables ) + { + CloseableUtils.closeQuietly(c); + } + } + } + + @Test + public void testBasic() throws Exception + { + List closeables = Lists.newArrayList(); + try + { + CuratorFramework client = CuratorFrameworkFactory.newClient(server.getConnectString(), new RetryOneTime(1)); + closeables.add(client); + client.start(); + + ServiceInstance instance = ServiceInstance.builder().payload("thing").name("test").port(10064).build(); + ServiceDiscovery discovery = ServiceDiscoveryBuilder.builder(String.class).basePath("/test").client(client).thisInstance(instance).build(); + closeables.add(discovery); + discovery.start(); + + Assert.assertEquals(discovery.queryForNames(), Collections.singletonList("test")); + + List> list = Lists.newArrayList(); + list.add(instance); + Assert.assertEquals(discovery.queryForInstances("test"), list); + } + finally + { + Collections.reverse(closeables); + for ( Closeable c : closeables ) + { + CloseableUtils.closeQuietly(c); + } + } + } + + @Test + public void testNoServerOnStart() throws Exception + { + server.stop(); + List closeables = Lists.newArrayList(); + try + { + CuratorFramework client = CuratorFrameworkFactory.newClient(server.getConnectString(), new RetryOneTime(1)); + closeables.add(client); + client.start(); + + ServiceInstance instance = ServiceInstance.builder().payload("thing").name("test").port(10064).build(); + ServiceDiscovery discovery = ServiceDiscoveryBuilder.builder(String.class).basePath("/test").client(client).thisInstance(instance).build(); + closeables.add(discovery); + discovery.start(); + + server.restart(); + Assert.assertEquals(discovery.queryForNames(), Collections.singletonList("test")); + + List> list = Lists.newArrayList(); + list.add(instance); + Assert.assertEquals(discovery.queryForInstances("test"), list); + } + finally + { + Collections.reverse(closeables); + for ( Closeable c : closeables ) + { + CloseableUtils.closeQuietly(c); + } + } + } + + // CURATOR-164 + @Test + public void testUnregisterService() throws Exception + { + final String name = "name"; + + final CountDownLatch restartLatch = new CountDownLatch(1); + List closeables = Lists.newArrayList(); + + InstanceSerializer slowSerializer = new JsonInstanceSerializer(String.class) + { + private boolean first = true; + + @Override + public byte[] serialize(ServiceInstance instance) throws Exception + { + if ( first ) + { + System.out.println("Serializer first registration."); + first = false; + } + else + { + System.out.println("Waiting for reconnect to finish."); + // Simulate the serialize method being slow. + // This could just be a timed wait, but that's kind of non-deterministic. + restartLatch.await(); + } + return super.serialize(instance); + } + }; + + try + { + CuratorFramework client = CuratorFrameworkFactory.newClient(server.getConnectString(), new RetryOneTime(1)); + closeables.add(client); + client.start(); + + ServiceInstance instance = ServiceInstance.builder().payload("thing").name(name).port(10064).build(); + ServiceDiscovery discovery = ServiceDiscoveryBuilder.builder(String.class).basePath("/test").client(client).thisInstance(instance).serializer(slowSerializer).watchInstances(true).build(); + closeables.add(discovery); + discovery.start(); + + Assert.assertFalse(discovery.queryForInstances(name).isEmpty(), "Service should start registered."); + + server.stop(); + server.restart(); + + discovery.unregisterService(instance); + restartLatch.countDown(); + + new Timing().sleepABit(); // Wait for the rest of registration to finish. + + Assert.assertTrue(discovery.queryForInstances(name).isEmpty(), "Service should have unregistered."); + } + finally + { + Collections.reverse(closeables); + for ( Closeable c : closeables ) + { + CloseableUtils.closeQuietly(c); + } + } + } + + @Test + public void testCleaning() throws Exception + { + System.setProperty("curator-discovery-clean-threshold-ms", "10"); + List closeables = Lists.newArrayList(); + try + { + CuratorFramework client = CuratorFrameworkFactory.newClient(server.getConnectString(), new RetryOneTime(1)); + closeables.add(client); + client.start(); + + ServiceInstance instance = ServiceInstance.builder().payload("thing").name("test").port(10064).build(); + ServiceDiscovery discovery = ServiceDiscoveryBuilder.builder(String.class).basePath("/test").client(client).thisInstance(instance).build(); + closeables.add(discovery); + discovery.start(); + discovery.unregisterService(instance); + + Thread.sleep(100); + + discovery.queryForNames(); // causes a clean + Assert.assertEquals(((ServiceDiscoveryImpl)discovery).debugServicesQty(), 0); + } + finally + { + System.clearProperty("curator-discovery-clean-threshold-ms"); + Collections.reverse(closeables); + for ( Closeable c : closeables ) + { + CloseableUtils.closeQuietly(c); + } + } + } +}