int[] numOwners = {1, 2, 3, 5};
// Since the number of nodes changes, the capacity factors are repeated
float[][] capacityFactors = {null, {1}, {2}, {1, 100}, {2, 0, 1}};
ConsistentHashFactory <DefaultConsistentHash> chf = createConsistentHashFactory();
Hash hashFunction = new MurmurHash3();
for (int nn : numNodes) {
List<Address> nodes = new ArrayList<Address>(nn);
for (int j = 0; j < nn; j++) {
nodes.add(new TestAddress(j, "TA"));