Package org.infinispan.distribution.rehash

Source Code of org.infinispan.distribution.rehash.ConcurrentNonOverlappingLeaveTest

/*
* JBoss, Home of Professional Open Source
* Copyright 2009 Red Hat Inc. and/or its affiliates and other
* contributors as indicated by the @author tags. All rights reserved.
* See the copyright.txt in the distribution for a full listing of
* individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.infinispan.distribution.rehash;

import java.util.Arrays;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

import org.infinispan.distribution.ch.ConsistentHash;
import org.infinispan.manager.CacheContainer;
import org.infinispan.remoting.transport.Address;
import org.infinispan.test.TestingUtil;
import org.testng.annotations.Test;

@Test(groups = "functional", testName = "distribution.rehash.ConcurrentNonOverlappingLeaveTest")
public class ConcurrentNonOverlappingLeaveTest extends RehashLeaveTestBase {
   Address l1, l2;
   // since two nodes are leaving, we allow some entries to be lost
   private Set<Integer> lostSegments = new HashSet<Integer>();

   @Override
   protected void assertOwnershipAndNonOwnership(Object key, boolean allowL1) {
      if (lostSegments.contains(getConsistentHash(c1).getSegment(key)))
         return;

      super.assertOwnershipAndNonOwnership(key, allowL1);
   }

   @Override
   protected void assertOnAllCaches(Object key, String value) {
      if (lostSegments.contains(getConsistentHash(c1).getSegment(key)))
      return;

      super.assertOnAllCaches(key, value);
   }

   void performRehashEvent(boolean offline) {
      l1 = addressOf(c2);
      l2 = addressOf(c4);
      List<Address> killedNodes = Arrays.asList(l1, l2);

      CacheContainer cm2 = c2.getCacheManager();
      CacheContainer cm4 = c4.getCacheManager();

      Set<Integer> overlappingSegments = new HashSet<Integer>();
      ConsistentHash ch = getConsistentHash(c1);
      for (int segment = 0; segment < ch.getNumSegments(); segment++) {
         List<Address> owners = ch.locateOwnersForSegment(segment);
         if (owners.containsAll(killedNodes)) {
            overlappingSegments.add(segment);
         }
      }
      lostSegments = overlappingSegments;
      log.tracef("These segments will be lost after killing nodes %s: %s", killedNodes, lostSegments);

      cacheManagers.removeAll(Arrays.asList(cm2, cm4));
      caches.removeAll(Arrays.asList(c2, c4));

      TestingUtil.killCacheManagers(cm2, cm4);
   }
}
TOP

Related Classes of org.infinispan.distribution.rehash.ConcurrentNonOverlappingLeaveTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.