Validate against duplicate device part replica assignment
We should never assign multiple replicas of the same partition to the same device - our on-disk layout can only support a single replica of a given part on a single device. We should not do this, so we validate against it and raise a loud warning if this terrible state is ever observed after a rebalance. Unfortunately currently there's a couple not necessarily uncommon scenarios which will trigger this observed state today: 1. If we have less devices than replicas 2. If a server or zones aggregate device weight make it the most appropriate candidate for multiple replicas and you're a bit unlucky Fixing #1 would be easy, we should just not allow that state anymore. Really we never did - if you have a 3 replica ring with one device - you have one replica. Everything that iter_nodes'd would de-dupe. We should just be insisting that you explicitly acknowledge your replica count with set_replicas. I have been lost in the abyss for days searching for a general solutions to #2. I'm sure it exists, but I will not have wrestled it to submission by RC1. In the meantime we can eliminate a great deal of the luck required simply by refusing to place more than one replica of a part on a device in assign_parts. The meat of the change is a small update to the .validate method in RingBuilder. It basically unrolls a pre-existing (part, replica) loop so that all the replicas of the part come out in order so that we can build up the set of dev_id's for which all the replicas of a given part are assigned part-by-part. If we observe any duplicates - we raise a warning. To clean the cobwebs out of the rest of the corner cases we're going to delay get_required_overload from kicking in until we achive dispersion, and a small check was added when selecting a device subtier to validate if it's already being used - picking any other device in the tier works out much better. If no other devices are available in the tier - we raise a warning. A more elegant or optimized solution may exist. Many unittests did not meet the criteria #1, but the fix was straight forward after being identified by the pigeonhole check. However, many more tests were affected by #2 - but again the fix came to be simply adding more devices. The fantasy that all failure domains contain at least replica count devices is prevalent in both our ring placement algorithm and it's tests. These tests were trying to demonstrate some complex characteristics of our ring placement algorithm and I believe we just got a bit too carried away trying to find the simplest possible example to demonstrate the desirable trait. I think a better example looks more like a real ring - with many devices in each server and many servers in each zone - I think more devices makes the tests better. As much as possible I've tried to maintain the original intent of the tests - when adding devices I've either spread the weight out amongst them or added proportional weights to the other tiers. I added an example straw man test to validate that three devices with different weights in three different zones won't blow up. Once we can do that without raising warnings and assigning duplicate device part replicas - we can add more. And more importantly change the warnings to errors - because we would much prefer to not do that #$%^ anymore. Co-Authored-By: Kota Tsuyuzaki <tsuyuzaki.kota@lab.ntt.co.jp> Related-Bug: #1452431 Change-Id: I592d5b611188670ae842fe3d030aa3b340ac36f9
This commit is contained in:
parent
a7837c785a
commit
5070869ac0
@ -784,6 +784,7 @@ swift-ring-builder <builder_file> rebalance [options]
|
|||||||
|
|
||||||
if options.debug:
|
if options.debug:
|
||||||
logger = logging.getLogger("swift.ring.builder")
|
logger = logging.getLogger("swift.ring.builder")
|
||||||
|
logger.disabled = False
|
||||||
logger.setLevel(logging.DEBUG)
|
logger.setLevel(logging.DEBUG)
|
||||||
handler = logging.StreamHandler(stdout)
|
handler = logging.StreamHandler(stdout)
|
||||||
formatter = logging.Formatter("%(levelname)s: %(message)s")
|
formatter = logging.Formatter("%(levelname)s: %(message)s")
|
||||||
|
@ -22,6 +22,8 @@ import math
|
|||||||
import random
|
import random
|
||||||
import six.moves.cPickle as pickle
|
import six.moves.cPickle as pickle
|
||||||
from copy import deepcopy
|
from copy import deepcopy
|
||||||
|
from contextlib import contextmanager
|
||||||
|
import warnings
|
||||||
|
|
||||||
from array import array
|
from array import array
|
||||||
from collections import defaultdict
|
from collections import defaultdict
|
||||||
@ -36,6 +38,10 @@ from swift.common.ring.utils import tiers_for_dev, build_tier_tree, \
|
|||||||
MAX_BALANCE = 999.99
|
MAX_BALANCE = 999.99
|
||||||
|
|
||||||
|
|
||||||
|
class RingValidationWarning(Warning):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
# python 2.7+
|
# python 2.7+
|
||||||
from logging import NullHandler
|
from logging import NullHandler
|
||||||
@ -112,9 +118,24 @@ class RingBuilder(object):
|
|||||||
|
|
||||||
self.logger = logging.getLogger("swift.ring.builder")
|
self.logger = logging.getLogger("swift.ring.builder")
|
||||||
if not self.logger.handlers:
|
if not self.logger.handlers:
|
||||||
|
self.logger.disabled = True
|
||||||
# silence "no handler for X" error messages
|
# silence "no handler for X" error messages
|
||||||
self.logger.addHandler(NullHandler())
|
self.logger.addHandler(NullHandler())
|
||||||
|
|
||||||
|
@contextmanager
|
||||||
|
def debug(self):
|
||||||
|
"""
|
||||||
|
Temporarily enables debug logging, useful in tests, e.g.
|
||||||
|
|
||||||
|
with rb.debug():
|
||||||
|
rb.rebalance()
|
||||||
|
"""
|
||||||
|
self.logger.disabled = False
|
||||||
|
try:
|
||||||
|
yield
|
||||||
|
finally:
|
||||||
|
self.logger.disabled = True
|
||||||
|
|
||||||
def weight_of_one_part(self):
|
def weight_of_one_part(self):
|
||||||
"""
|
"""
|
||||||
Returns the weight of each partition as calculated from the
|
Returns the weight of each partition as calculated from the
|
||||||
@ -376,11 +397,22 @@ class RingBuilder(object):
|
|||||||
|
|
||||||
:returns: (number_of_partitions_altered, resulting_balance)
|
:returns: (number_of_partitions_altered, resulting_balance)
|
||||||
"""
|
"""
|
||||||
|
num_devices = len([d for d in self._iter_devs() if d['weight'] > 0])
|
||||||
|
if num_devices < self.replicas:
|
||||||
|
warnings.warn(RingValidationWarning(
|
||||||
|
"Replica count of %(replicas)s requires more "
|
||||||
|
"than %(num_devices)s devices" % {
|
||||||
|
'replicas': self.replicas,
|
||||||
|
'num_devices': num_devices,
|
||||||
|
}))
|
||||||
old_replica2part2dev = copy.deepcopy(self._replica2part2dev)
|
old_replica2part2dev = copy.deepcopy(self._replica2part2dev)
|
||||||
|
|
||||||
if seed is not None:
|
if seed is not None:
|
||||||
random.seed(seed)
|
random.seed(seed)
|
||||||
|
|
||||||
|
self._effective_overload = self.overload
|
||||||
|
if self.overload and self.dispersion <= 0:
|
||||||
|
# iff we're fully dispersed we want to bring in overload
|
||||||
self._effective_overload = min(self.overload,
|
self._effective_overload = min(self.overload,
|
||||||
self.get_required_overload())
|
self.get_required_overload())
|
||||||
self.logger.debug("Using effective overload of %f",
|
self.logger.debug("Using effective overload of %f",
|
||||||
@ -547,19 +579,43 @@ class RingBuilder(object):
|
|||||||
for dev_id in part2dev:
|
for dev_id in part2dev:
|
||||||
dev_usage[dev_id] += 1
|
dev_usage[dev_id] += 1
|
||||||
|
|
||||||
for part, replica in self._each_part_replica():
|
for dev in self._iter_devs():
|
||||||
|
if not isinstance(dev['port'], int):
|
||||||
|
raise exceptions.RingValidationError(
|
||||||
|
"Device %d has port %r, which is not an integer." %
|
||||||
|
(dev['id'], dev['port']))
|
||||||
|
|
||||||
|
int_replicas = int(math.ceil(self.replicas))
|
||||||
|
rep2part_len = map(len, self._replica2part2dev)
|
||||||
|
# check the assignments of each part's replicas
|
||||||
|
for part in range(self.parts):
|
||||||
|
devs_for_part = []
|
||||||
|
for replica, part_len in enumerate(rep2part_len):
|
||||||
|
if part_len <= part:
|
||||||
|
# last replica may be short on parts because of floating
|
||||||
|
# replica count
|
||||||
|
if replica + 1 < int_replicas:
|
||||||
|
raise exceptions.RingValidationError(
|
||||||
|
"The partition assignments of replica %r were "
|
||||||
|
"shorter than expected (%s < %s) - this should "
|
||||||
|
"only happen for the last replica" % (
|
||||||
|
replica,
|
||||||
|
len(self._replica2part2dev[replica]),
|
||||||
|
self.parts,
|
||||||
|
))
|
||||||
|
break
|
||||||
dev_id = self._replica2part2dev[replica][part]
|
dev_id = self._replica2part2dev[replica][part]
|
||||||
if dev_id >= dev_len or not self.devs[dev_id]:
|
if dev_id >= dev_len or not self.devs[dev_id]:
|
||||||
raise exceptions.RingValidationError(
|
raise exceptions.RingValidationError(
|
||||||
"Partition %d, replica %d was not allocated "
|
"Partition %d, replica %d was not allocated "
|
||||||
"to a device." %
|
"to a device." %
|
||||||
(part, replica))
|
(part, replica))
|
||||||
|
devs_for_part.append(dev_id)
|
||||||
for dev in self._iter_devs():
|
if len(devs_for_part) != len(set(devs_for_part)):
|
||||||
if not isinstance(dev['port'], int):
|
warnings.warn(RingValidationWarning(
|
||||||
raise exceptions.RingValidationError(
|
"The partition %s has been assigned to "
|
||||||
"Device %d has port %r, which is not an integer." %
|
"duplicate devices %r" % (
|
||||||
(dev['id'], dev['port']))
|
part, devs_for_part)))
|
||||||
|
|
||||||
if stats:
|
if stats:
|
||||||
weight_of_one_part = self.weight_of_one_part()
|
weight_of_one_part = self.weight_of_one_part()
|
||||||
@ -1292,9 +1348,26 @@ class RingBuilder(object):
|
|||||||
if (roomiest_tier is None or
|
if (roomiest_tier is None or
|
||||||
(other_replicas[roomiest_tier] >
|
(other_replicas[roomiest_tier] >
|
||||||
other_replicas[fudgiest_tier])):
|
other_replicas[fudgiest_tier])):
|
||||||
tier = fudgiest_tier
|
subtier = fudgiest_tier
|
||||||
else:
|
else:
|
||||||
tier = roomiest_tier
|
subtier = roomiest_tier
|
||||||
|
# no putting multiples on the same device
|
||||||
|
if len(subtier) == 4 and (
|
||||||
|
subtier in occupied_tiers_by_tier_len[4]):
|
||||||
|
sibling_tiers = [
|
||||||
|
(d['region'], d['zone'], d['ip'], d['id'])
|
||||||
|
for d in tier2devs[tier]]
|
||||||
|
unused_sibling_tiers = [
|
||||||
|
t for t in sibling_tiers
|
||||||
|
if t not in occupied_tiers_by_tier_len[4]]
|
||||||
|
if unused_sibling_tiers:
|
||||||
|
# anything is better than the alternative
|
||||||
|
subtier = random.choice(unused_sibling_tiers)
|
||||||
|
else:
|
||||||
|
warnings.warn(RingValidationWarning(
|
||||||
|
"All devices in tier %r already "
|
||||||
|
"contain a replica" % (tier,)))
|
||||||
|
tier = subtier
|
||||||
depth += 1
|
depth += 1
|
||||||
|
|
||||||
dev = tier2devs[tier][-1]
|
dev = tier2devs[tier][-1]
|
||||||
|
@ -31,7 +31,9 @@ class TestRunScenario(unittest.TestCase):
|
|||||||
scenario = {
|
scenario = {
|
||||||
'replicas': 3, 'part_power': 8, 'random_seed': 123, 'overload': 0,
|
'replicas': 3, 'part_power': 8, 'random_seed': 123, 'overload': 0,
|
||||||
'rounds': [[['add', 'r1z2-3.4.5.6:7/sda8', 100],
|
'rounds': [[['add', 'r1z2-3.4.5.6:7/sda8', 100],
|
||||||
['add', 'z2-3.4.5.6:7/sda9', 200]],
|
['add', 'z2-3.4.5.6:7/sda9', 200],
|
||||||
|
['add', 'z2-3.4.5.6:7/sda10', 200],
|
||||||
|
['add', 'z2-3.4.5.6:7/sda11', 200]],
|
||||||
[['set_weight', 0, 150]],
|
[['set_weight', 0, 150]],
|
||||||
[['remove', 1]],
|
[['remove', 1]],
|
||||||
[['save', builder_path]]]}
|
[['save', builder_path]]]}
|
||||||
|
@ -72,12 +72,13 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
except OSError:
|
except OSError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def create_sample_ring(self):
|
def create_sample_ring(self, part_power=6):
|
||||||
""" Create a sample ring with two devices
|
""" Create a sample ring with four devices
|
||||||
|
|
||||||
At least two devices are needed to test removing
|
At least four devices are needed to test removing
|
||||||
a device, since removing the last device of a ring
|
a device, since having less devices than replicas
|
||||||
is not allowed """
|
is not allowed.
|
||||||
|
"""
|
||||||
|
|
||||||
# Ensure there is no existing test builder file because
|
# Ensure there is no existing test builder file because
|
||||||
# create_sample_ring() might be used more than once in a single test
|
# create_sample_ring() might be used more than once in a single test
|
||||||
@ -86,7 +87,7 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
except OSError:
|
except OSError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
ring = RingBuilder(6, 3, 1)
|
ring = RingBuilder(part_power, 3, 1)
|
||||||
ring.add_dev({'weight': 100.0,
|
ring.add_dev({'weight': 100.0,
|
||||||
'region': 0,
|
'region': 0,
|
||||||
'zone': 0,
|
'zone': 0,
|
||||||
@ -102,6 +103,20 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
'port': 6001,
|
'port': 6001,
|
||||||
'device': 'sda2'
|
'device': 'sda2'
|
||||||
})
|
})
|
||||||
|
ring.add_dev({'weight': 100.0,
|
||||||
|
'region': 2,
|
||||||
|
'zone': 2,
|
||||||
|
'ip': '127.0.0.3',
|
||||||
|
'port': 6002,
|
||||||
|
'device': 'sdc3'
|
||||||
|
})
|
||||||
|
ring.add_dev({'weight': 100.0,
|
||||||
|
'region': 3,
|
||||||
|
'zone': 3,
|
||||||
|
'ip': '127.0.0.4',
|
||||||
|
'port': 6003,
|
||||||
|
'device': 'sdd4'
|
||||||
|
})
|
||||||
ring.save(self.tmpfile)
|
ring.save(self.tmpfile)
|
||||||
|
|
||||||
def test_parse_search_values_old_format(self):
|
def test_parse_search_values_old_format(self):
|
||||||
@ -153,13 +168,19 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
rb = RingBuilder(8, 3, 0)
|
rb = RingBuilder(8, 3, 0)
|
||||||
rb.add_dev({'id': 0, 'region': 1, 'zone': 0, 'weight': 100,
|
rb.add_dev({'id': 0, 'region': 1, 'zone': 0, 'weight': 100,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 3, 'region': 1, 'zone': 0, 'weight': 100,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdb1'})
|
||||||
rb.add_dev({'id': 1, 'region': 1, 'zone': 1, 'weight': 100,
|
rb.add_dev({'id': 1, 'region': 1, 'zone': 1, 'weight': 100,
|
||||||
'ip': '127.0.0.1', 'port': 10001, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 4, 'region': 1, 'zone': 1, 'weight': 100,
|
||||||
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sdb1'})
|
||||||
rb.add_dev({'id': 2, 'region': 1, 'zone': 2, 'weight': 100,
|
rb.add_dev({'id': 2, 'region': 1, 'zone': 2, 'weight': 100,
|
||||||
'ip': '127.0.0.1', 'port': 10002, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10002, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 5, 'region': 1, 'zone': 2, 'weight': 100,
|
||||||
|
'ip': '127.0.0.1', 'port': 10002, 'device': 'sdb1'})
|
||||||
rb.rebalance()
|
rb.rebalance()
|
||||||
|
|
||||||
rb.add_dev({'id': 3, 'region': 2, 'zone': 1, 'weight': 10,
|
rb.add_dev({'id': 6, 'region': 2, 'zone': 1, 'weight': 10,
|
||||||
'ip': '127.0.0.1', 'port': 10004, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10004, 'device': 'sda1'})
|
||||||
rb.pretend_min_part_hours_passed()
|
rb.pretend_min_part_hours_passed()
|
||||||
rb.rebalance()
|
rb.rebalance()
|
||||||
@ -270,7 +291,7 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
|
|
||||||
# Check that device was created with given data
|
# Check that device was created with given data
|
||||||
ring = RingBuilder.load(self.tmpfile)
|
ring = RingBuilder.load(self.tmpfile)
|
||||||
dev = [d for d in ring.devs if d['id'] == 2][0]
|
dev = ring.devs[-1]
|
||||||
self.assertEqual(dev['region'], 2)
|
self.assertEqual(dev['region'], 2)
|
||||||
self.assertEqual(dev['zone'], 3)
|
self.assertEqual(dev['zone'], 3)
|
||||||
self.assertEqual(dev['ip'], '127.0.0.1')
|
self.assertEqual(dev['ip'], '127.0.0.1')
|
||||||
@ -293,7 +314,7 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
|
|
||||||
# Check that device was created with given data
|
# Check that device was created with given data
|
||||||
ring = RingBuilder.load(self.tmpfile)
|
ring = RingBuilder.load(self.tmpfile)
|
||||||
dev = [d for d in ring.devs if d['id'] == 2][0]
|
dev = ring.devs[-1]
|
||||||
self.assertEqual(dev['region'], 2)
|
self.assertEqual(dev['region'], 2)
|
||||||
self.assertEqual(dev['zone'], 3)
|
self.assertEqual(dev['zone'], 3)
|
||||||
self.assertEqual(dev['ip'], '2001:0:1234::c1c0:abcd:876')
|
self.assertEqual(dev['ip'], '2001:0:1234::c1c0:abcd:876')
|
||||||
@ -323,7 +344,7 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
|
|
||||||
# Check that device was created with given data
|
# Check that device was created with given data
|
||||||
ring = RingBuilder.load(self.tmpfile)
|
ring = RingBuilder.load(self.tmpfile)
|
||||||
dev = [d for d in ring.devs if d['id'] == 2][0]
|
dev = ring.devs[-1]
|
||||||
self.assertEqual(dev['region'], 2)
|
self.assertEqual(dev['region'], 2)
|
||||||
self.assertEqual(dev['zone'], 3)
|
self.assertEqual(dev['zone'], 3)
|
||||||
self.assertEqual(dev['ip'], '127.0.0.2')
|
self.assertEqual(dev['ip'], '127.0.0.2')
|
||||||
@ -353,7 +374,7 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
|
|
||||||
# Check that device was created with given data
|
# Check that device was created with given data
|
||||||
ring = RingBuilder.load(self.tmpfile)
|
ring = RingBuilder.load(self.tmpfile)
|
||||||
dev = [d for d in ring.devs if d['id'] == 2][0]
|
dev = ring.devs[-1]
|
||||||
self.assertEqual(dev['region'], 2)
|
self.assertEqual(dev['region'], 2)
|
||||||
self.assertEqual(dev['zone'], 3)
|
self.assertEqual(dev['zone'], 3)
|
||||||
self.assertEqual(dev['ip'], '3001:0:1234::c1c0:abcd:876')
|
self.assertEqual(dev['ip'], '3001:0:1234::c1c0:abcd:876')
|
||||||
@ -383,7 +404,7 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
|
|
||||||
# Check that device was created with given data
|
# Check that device was created with given data
|
||||||
ring = RingBuilder.load(self.tmpfile)
|
ring = RingBuilder.load(self.tmpfile)
|
||||||
dev = [d for d in ring.devs if d['id'] == 2][0]
|
dev = ring.devs[-1]
|
||||||
self.assertEqual(dev['region'], 2)
|
self.assertEqual(dev['region'], 2)
|
||||||
self.assertEqual(dev['zone'], 3)
|
self.assertEqual(dev['zone'], 3)
|
||||||
self.assertEqual(dev['ip'], 'test.test.com')
|
self.assertEqual(dev['ip'], 'test.test.com')
|
||||||
@ -426,11 +447,10 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
ring = RingBuilder.load(self.tmpfile)
|
ring = RingBuilder.load(self.tmpfile)
|
||||||
|
|
||||||
# Check that weight was set to 0
|
# Check that weight was set to 0
|
||||||
dev = [d for d in ring.devs if d['id'] == 0][0]
|
dev = ring.devs[0]
|
||||||
self.assertEqual(dev['weight'], 0)
|
self.assertEqual(dev['weight'], 0)
|
||||||
|
|
||||||
# Check that device is in list of devices to be removed
|
# Check that device is in list of devices to be removed
|
||||||
dev = [d for d in ring._remove_devs if d['id'] == 0][0]
|
|
||||||
self.assertEqual(dev['region'], 0)
|
self.assertEqual(dev['region'], 0)
|
||||||
self.assertEqual(dev['zone'], 0)
|
self.assertEqual(dev['zone'], 0)
|
||||||
self.assertEqual(dev['ip'], '127.0.0.1')
|
self.assertEqual(dev['ip'], '127.0.0.1')
|
||||||
@ -442,7 +462,7 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
self.assertEqual(dev['meta'], 'some meta data')
|
self.assertEqual(dev['meta'], 'some meta data')
|
||||||
|
|
||||||
# Check that second device in ring is not affected
|
# Check that second device in ring is not affected
|
||||||
dev = [d for d in ring.devs if d['id'] == 1][0]
|
dev = ring.devs[1]
|
||||||
self.assertEqual(dev['weight'], 100)
|
self.assertEqual(dev['weight'], 100)
|
||||||
self.assertFalse([d for d in ring._remove_devs if d['id'] == 1])
|
self.assertFalse([d for d in ring._remove_devs if d['id'] == 1])
|
||||||
|
|
||||||
@ -459,11 +479,10 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
ring = RingBuilder.load(self.tmpfile)
|
ring = RingBuilder.load(self.tmpfile)
|
||||||
|
|
||||||
# Check that weight was set to 0
|
# Check that weight was set to 0
|
||||||
dev = [d for d in ring.devs if d['id'] == 0][0]
|
dev = ring.devs[0]
|
||||||
self.assertEqual(dev['weight'], 0)
|
self.assertEqual(dev['weight'], 0)
|
||||||
|
|
||||||
# Check that device is in list of devices to be removed
|
# Check that device is in list of devices to be removed
|
||||||
dev = [d for d in ring._remove_devs if d['id'] == 0][0]
|
|
||||||
self.assertEqual(dev['region'], 0)
|
self.assertEqual(dev['region'], 0)
|
||||||
self.assertEqual(dev['zone'], 0)
|
self.assertEqual(dev['zone'], 0)
|
||||||
self.assertEqual(dev['ip'], '127.0.0.1')
|
self.assertEqual(dev['ip'], '127.0.0.1')
|
||||||
@ -475,7 +494,7 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
self.assertEqual(dev['meta'], 'some meta data')
|
self.assertEqual(dev['meta'], 'some meta data')
|
||||||
|
|
||||||
# Check that second device in ring is not affected
|
# Check that second device in ring is not affected
|
||||||
dev = [d for d in ring.devs if d['id'] == 1][0]
|
dev = ring.devs[1]
|
||||||
self.assertEqual(dev['weight'], 100)
|
self.assertEqual(dev['weight'], 100)
|
||||||
self.assertFalse([d for d in ring._remove_devs if d['id'] == 1])
|
self.assertFalse([d for d in ring._remove_devs if d['id'] == 1])
|
||||||
|
|
||||||
@ -499,27 +518,26 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
|
|
||||||
# Test ipv6(old format)
|
# Test ipv6(old format)
|
||||||
argv = ["", self.tmpfile, "remove",
|
argv = ["", self.tmpfile, "remove",
|
||||||
"d2r2z3-[2001:0000:1234:0000:0000:C1C0:ABCD:0876]:6000"
|
"d4r2z3-[2001:0000:1234:0000:0000:C1C0:ABCD:0876]:6000"
|
||||||
"R[2::10]:7000/sda3_some meta data"]
|
"R[2::10]:7000/sda3_some meta data"]
|
||||||
self.assertRaises(SystemExit, ringbuilder.main, argv)
|
self.assertRaises(SystemExit, ringbuilder.main, argv)
|
||||||
ring = RingBuilder.load(self.tmpfile)
|
ring = RingBuilder.load(self.tmpfile)
|
||||||
|
|
||||||
# Check that second device in ring is not affected
|
# Check that second device in ring is not affected
|
||||||
dev = [d for d in ring.devs if d['id'] == 0][0]
|
dev = ring.devs[0]
|
||||||
self.assertEqual(dev['weight'], 100)
|
self.assertEqual(dev['weight'], 100)
|
||||||
self.assertFalse([d for d in ring._remove_devs if d['id'] == 0])
|
self.assertFalse([d for d in ring._remove_devs if d['id'] == 0])
|
||||||
|
|
||||||
# Check that second device in ring is not affected
|
# Check that second device in ring is not affected
|
||||||
dev = [d for d in ring.devs if d['id'] == 1][0]
|
dev = ring.devs[1]
|
||||||
self.assertEqual(dev['weight'], 100)
|
self.assertEqual(dev['weight'], 100)
|
||||||
self.assertFalse([d for d in ring._remove_devs if d['id'] == 1])
|
self.assertFalse([d for d in ring._remove_devs if d['id'] == 1])
|
||||||
|
|
||||||
# Check that weight was set to 0
|
# Check that weight was set to 0
|
||||||
dev = [d for d in ring.devs if d['id'] == 2][0]
|
dev = ring.devs[-1]
|
||||||
self.assertEqual(dev['weight'], 0)
|
self.assertEqual(dev['weight'], 0)
|
||||||
|
|
||||||
# Check that device is in list of devices to be removed
|
# Check that device is in list of devices to be removed
|
||||||
dev = [d for d in ring._remove_devs if d['id'] == 2][0]
|
|
||||||
self.assertEqual(dev['region'], 2)
|
self.assertEqual(dev['region'], 2)
|
||||||
self.assertEqual(dev['zone'], 3)
|
self.assertEqual(dev['zone'], 3)
|
||||||
self.assertEqual(dev['ip'], '2001:0:1234::c1c0:abcd:876')
|
self.assertEqual(dev['ip'], '2001:0:1234::c1c0:abcd:876')
|
||||||
@ -549,11 +567,10 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
ring = RingBuilder.load(self.tmpfile)
|
ring = RingBuilder.load(self.tmpfile)
|
||||||
|
|
||||||
# Check that weight was set to 0
|
# Check that weight was set to 0
|
||||||
dev = [d for d in ring.devs if d['id'] == 0][0]
|
dev = ring.devs[0]
|
||||||
self.assertEqual(dev['weight'], 0)
|
self.assertEqual(dev['weight'], 0)
|
||||||
|
|
||||||
# Check that device is in list of devices to be removed
|
# Check that device is in list of devices to be removed
|
||||||
dev = [d for d in ring._remove_devs if d['id'] == 0][0]
|
|
||||||
self.assertEqual(dev['region'], 0)
|
self.assertEqual(dev['region'], 0)
|
||||||
self.assertEqual(dev['zone'], 0)
|
self.assertEqual(dev['zone'], 0)
|
||||||
self.assertEqual(dev['ip'], '127.0.0.1')
|
self.assertEqual(dev['ip'], '127.0.0.1')
|
||||||
@ -565,7 +582,7 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
self.assertEqual(dev['meta'], 'some meta data')
|
self.assertEqual(dev['meta'], 'some meta data')
|
||||||
|
|
||||||
# Check that second device in ring is not affected
|
# Check that second device in ring is not affected
|
||||||
dev = [d for d in ring.devs if d['id'] == 1][0]
|
dev = ring.devs[1]
|
||||||
self.assertEqual(dev['weight'], 100)
|
self.assertEqual(dev['weight'], 100)
|
||||||
self.assertFalse([d for d in ring._remove_devs if d['id'] == 1])
|
self.assertFalse([d for d in ring._remove_devs if d['id'] == 1])
|
||||||
|
|
||||||
@ -589,7 +606,7 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
# Test ipv6(new format)
|
# Test ipv6(new format)
|
||||||
argv = \
|
argv = \
|
||||||
["", self.tmpfile, "remove",
|
["", self.tmpfile, "remove",
|
||||||
"--id", "2", "--region", "2", "--zone", "3",
|
"--id", "4", "--region", "2", "--zone", "3",
|
||||||
"--ip", "[3001:0000:1234:0000:0000:C1C0:ABCD:0876]",
|
"--ip", "[3001:0000:1234:0000:0000:C1C0:ABCD:0876]",
|
||||||
"--port", "8000",
|
"--port", "8000",
|
||||||
"--replication-ip", "[3::10]",
|
"--replication-ip", "[3::10]",
|
||||||
@ -599,21 +616,20 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
ring = RingBuilder.load(self.tmpfile)
|
ring = RingBuilder.load(self.tmpfile)
|
||||||
|
|
||||||
# Check that second device in ring is not affected
|
# Check that second device in ring is not affected
|
||||||
dev = [d for d in ring.devs if d['id'] == 0][0]
|
dev = ring.devs[0]
|
||||||
self.assertEqual(dev['weight'], 100)
|
self.assertEqual(dev['weight'], 100)
|
||||||
self.assertFalse([d for d in ring._remove_devs if d['id'] == 0])
|
self.assertFalse([d for d in ring._remove_devs if d['id'] == 0])
|
||||||
|
|
||||||
# Check that second device in ring is not affected
|
# Check that second device in ring is not affected
|
||||||
dev = [d for d in ring.devs if d['id'] == 1][0]
|
dev = ring.devs[1]
|
||||||
self.assertEqual(dev['weight'], 100)
|
self.assertEqual(dev['weight'], 100)
|
||||||
self.assertFalse([d for d in ring._remove_devs if d['id'] == 1])
|
self.assertFalse([d for d in ring._remove_devs if d['id'] == 1])
|
||||||
|
|
||||||
# Check that weight was set to 0
|
# Check that weight was set to 0
|
||||||
dev = [d for d in ring.devs if d['id'] == 2][0]
|
dev = ring.devs[-1]
|
||||||
self.assertEqual(dev['weight'], 0)
|
self.assertEqual(dev['weight'], 0)
|
||||||
|
|
||||||
# Check that device is in list of devices to be removed
|
# Check that device is in list of devices to be removed
|
||||||
dev = [d for d in ring._remove_devs if d['id'] == 2][0]
|
|
||||||
self.assertEqual(dev['region'], 2)
|
self.assertEqual(dev['region'], 2)
|
||||||
self.assertEqual(dev['zone'], 3)
|
self.assertEqual(dev['zone'], 3)
|
||||||
self.assertEqual(dev['ip'], '3001:0:1234::c1c0:abcd:876')
|
self.assertEqual(dev['ip'], '3001:0:1234::c1c0:abcd:876')
|
||||||
@ -645,7 +661,7 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
# Test domain name
|
# Test domain name
|
||||||
argv = \
|
argv = \
|
||||||
["", self.tmpfile, "remove",
|
["", self.tmpfile, "remove",
|
||||||
"--id", "2", "--region", "2", "--zone", "3",
|
"--id", "4", "--region", "2", "--zone", "3",
|
||||||
"--ip", "test.test.com",
|
"--ip", "test.test.com",
|
||||||
"--port", "6000",
|
"--port", "6000",
|
||||||
"--replication-ip", "r.test.com",
|
"--replication-ip", "r.test.com",
|
||||||
@ -655,21 +671,20 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
ring = RingBuilder.load(self.tmpfile)
|
ring = RingBuilder.load(self.tmpfile)
|
||||||
|
|
||||||
# Check that second device in ring is not affected
|
# Check that second device in ring is not affected
|
||||||
dev = [d for d in ring.devs if d['id'] == 0][0]
|
dev = ring.devs[0]
|
||||||
self.assertEqual(dev['weight'], 100)
|
self.assertEqual(dev['weight'], 100)
|
||||||
self.assertFalse([d for d in ring._remove_devs if d['id'] == 0])
|
self.assertFalse([d for d in ring._remove_devs if d['id'] == 0])
|
||||||
|
|
||||||
# Check that second device in ring is not affected
|
# Check that second device in ring is not affected
|
||||||
dev = [d for d in ring.devs if d['id'] == 1][0]
|
dev = ring.devs[1]
|
||||||
self.assertEqual(dev['weight'], 100)
|
self.assertEqual(dev['weight'], 100)
|
||||||
self.assertFalse([d for d in ring._remove_devs if d['id'] == 1])
|
self.assertFalse([d for d in ring._remove_devs if d['id'] == 1])
|
||||||
|
|
||||||
# Check that weight was set to 0
|
# Check that weight was set to 0
|
||||||
dev = [d for d in ring.devs if d['id'] == 2][0]
|
dev = ring.devs[-1]
|
||||||
self.assertEqual(dev['weight'], 0)
|
self.assertEqual(dev['weight'], 0)
|
||||||
|
|
||||||
# Check that device is in list of devices to be removed
|
# Check that device is in list of devices to be removed
|
||||||
dev = [d for d in ring._remove_devs if d['id'] == 2][0]
|
|
||||||
self.assertEqual(dev['region'], 2)
|
self.assertEqual(dev['region'], 2)
|
||||||
self.assertEqual(dev['zone'], 3)
|
self.assertEqual(dev['zone'], 3)
|
||||||
self.assertEqual(dev['ip'], 'test.test.com')
|
self.assertEqual(dev['ip'], 'test.test.com')
|
||||||
@ -716,11 +731,11 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
ring = RingBuilder.load(self.tmpfile)
|
ring = RingBuilder.load(self.tmpfile)
|
||||||
|
|
||||||
# Check that weight was changed
|
# Check that weight was changed
|
||||||
dev = [d for d in ring.devs if d['id'] == 0][0]
|
dev = ring.devs[0]
|
||||||
self.assertEqual(dev['weight'], 3.14159265359)
|
self.assertEqual(dev['weight'], 3.14159265359)
|
||||||
|
|
||||||
# Check that second device in ring is not affected
|
# Check that second device in ring is not affected
|
||||||
dev = [d for d in ring.devs if d['id'] == 1][0]
|
dev = ring.devs[1]
|
||||||
self.assertEqual(dev['weight'], 100)
|
self.assertEqual(dev['weight'], 100)
|
||||||
|
|
||||||
# Final check, rebalance and check ring is ok
|
# Final check, rebalance and check ring is ok
|
||||||
@ -737,11 +752,11 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
ring = RingBuilder.load(self.tmpfile)
|
ring = RingBuilder.load(self.tmpfile)
|
||||||
|
|
||||||
# Check that weight was changed
|
# Check that weight was changed
|
||||||
dev = [d for d in ring.devs if d['id'] == 0][0]
|
dev = ring.devs[0]
|
||||||
self.assertEqual(dev['weight'], 3.14159265359)
|
self.assertEqual(dev['weight'], 3.14159265359)
|
||||||
|
|
||||||
# Check that second device in ring is not affected
|
# Check that second device in ring is not affected
|
||||||
dev = [d for d in ring.devs if d['id'] == 1][0]
|
dev = ring.devs[1]
|
||||||
self.assertEqual(dev['weight'], 100)
|
self.assertEqual(dev['weight'], 100)
|
||||||
|
|
||||||
# Final check, rebalance and check ring is ok
|
# Final check, rebalance and check ring is ok
|
||||||
@ -764,21 +779,21 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
|
|
||||||
# Test ipv6(old format)
|
# Test ipv6(old format)
|
||||||
argv = ["", self.tmpfile, "set_weight",
|
argv = ["", self.tmpfile, "set_weight",
|
||||||
"d2r2z3-[2001:0000:1234:0000:0000:C1C0:ABCD:0876]:6000"
|
"d4r2z3-[2001:0000:1234:0000:0000:C1C0:ABCD:0876]:6000"
|
||||||
"R[2::10]:7000/sda3_some meta data", "3.14159265359"]
|
"R[2::10]:7000/sda3_some meta data", "3.14159265359"]
|
||||||
self.assertRaises(SystemExit, ringbuilder.main, argv)
|
self.assertRaises(SystemExit, ringbuilder.main, argv)
|
||||||
ring = RingBuilder.load(self.tmpfile)
|
ring = RingBuilder.load(self.tmpfile)
|
||||||
|
|
||||||
# Check that second device in ring is not affected
|
# Check that second device in ring is not affected
|
||||||
dev = [d for d in ring.devs if d['id'] == 0][0]
|
dev = ring.devs[0]
|
||||||
self.assertEqual(dev['weight'], 100)
|
self.assertEqual(dev['weight'], 100)
|
||||||
|
|
||||||
# Check that second device in ring is not affected
|
# Check that second device in ring is not affected
|
||||||
dev = [d for d in ring.devs if d['id'] == 1][0]
|
dev = ring.devs[1]
|
||||||
self.assertEqual(dev['weight'], 100)
|
self.assertEqual(dev['weight'], 100)
|
||||||
|
|
||||||
# Check that weight was changed
|
# Check that weight was changed
|
||||||
dev = [d for d in ring.devs if d['id'] == 2][0]
|
dev = ring.devs[-1]
|
||||||
self.assertEqual(dev['weight'], 3.14159265359)
|
self.assertEqual(dev['weight'], 3.14159265359)
|
||||||
|
|
||||||
# Final check, rebalance and check ring is ok
|
# Final check, rebalance and check ring is ok
|
||||||
@ -800,11 +815,11 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
ring = RingBuilder.load(self.tmpfile)
|
ring = RingBuilder.load(self.tmpfile)
|
||||||
|
|
||||||
# Check that weight was changed
|
# Check that weight was changed
|
||||||
dev = [d for d in ring.devs if d['id'] == 0][0]
|
dev = ring.devs[0]
|
||||||
self.assertEqual(dev['weight'], 3.14159265359)
|
self.assertEqual(dev['weight'], 3.14159265359)
|
||||||
|
|
||||||
# Check that second device in ring is not affected
|
# Check that second device in ring is not affected
|
||||||
dev = [d for d in ring.devs if d['id'] == 1][0]
|
dev = ring.devs[1]
|
||||||
self.assertEqual(dev['weight'], 100)
|
self.assertEqual(dev['weight'], 100)
|
||||||
|
|
||||||
# Final check, rebalance and check ring is ok
|
# Final check, rebalance and check ring is ok
|
||||||
@ -828,7 +843,7 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
# Test ipv6(new format)
|
# Test ipv6(new format)
|
||||||
argv = \
|
argv = \
|
||||||
["", self.tmpfile, "set_weight",
|
["", self.tmpfile, "set_weight",
|
||||||
"--id", "2", "--region", "2", "--zone", "3",
|
"--id", "4", "--region", "2", "--zone", "3",
|
||||||
"--ip", "[2001:0000:1234:0000:0000:C1C0:ABCD:0876]",
|
"--ip", "[2001:0000:1234:0000:0000:C1C0:ABCD:0876]",
|
||||||
"--port", "6000",
|
"--port", "6000",
|
||||||
"--replication-ip", "[2::10]",
|
"--replication-ip", "[2::10]",
|
||||||
@ -838,15 +853,15 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
ring = RingBuilder.load(self.tmpfile)
|
ring = RingBuilder.load(self.tmpfile)
|
||||||
|
|
||||||
# Check that second device in ring is not affected
|
# Check that second device in ring is not affected
|
||||||
dev = [d for d in ring.devs if d['id'] == 0][0]
|
dev = ring.devs[0]
|
||||||
self.assertEqual(dev['weight'], 100)
|
self.assertEqual(dev['weight'], 100)
|
||||||
|
|
||||||
# Check that second device in ring is not affected
|
# Check that second device in ring is not affected
|
||||||
dev = [d for d in ring.devs if d['id'] == 1][0]
|
dev = ring.devs[1]
|
||||||
self.assertEqual(dev['weight'], 100)
|
self.assertEqual(dev['weight'], 100)
|
||||||
|
|
||||||
# Check that weight was changed
|
# Check that weight was changed
|
||||||
dev = [d for d in ring.devs if d['id'] == 2][0]
|
dev = ring.devs[-1]
|
||||||
self.assertEqual(dev['weight'], 3.14159265359)
|
self.assertEqual(dev['weight'], 3.14159265359)
|
||||||
|
|
||||||
# Final check, rebalance and check ring is ok
|
# Final check, rebalance and check ring is ok
|
||||||
@ -870,7 +885,7 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
# Test domain name
|
# Test domain name
|
||||||
argv = \
|
argv = \
|
||||||
["", self.tmpfile, "set_weight",
|
["", self.tmpfile, "set_weight",
|
||||||
"--id", "2", "--region", "2", "--zone", "3",
|
"--id", "4", "--region", "2", "--zone", "3",
|
||||||
"--ip", "test.test.com",
|
"--ip", "test.test.com",
|
||||||
"--port", "6000",
|
"--port", "6000",
|
||||||
"--replication-ip", "r.test.com",
|
"--replication-ip", "r.test.com",
|
||||||
@ -880,15 +895,15 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
ring = RingBuilder.load(self.tmpfile)
|
ring = RingBuilder.load(self.tmpfile)
|
||||||
|
|
||||||
# Check that second device in ring is not affected
|
# Check that second device in ring is not affected
|
||||||
dev = [d for d in ring.devs if d['id'] == 0][0]
|
dev = ring.devs[0]
|
||||||
self.assertEqual(dev['weight'], 100)
|
self.assertEqual(dev['weight'], 100)
|
||||||
|
|
||||||
# Check that second device in ring is not affected
|
# Check that second device in ring is not affected
|
||||||
dev = [d for d in ring.devs if d['id'] == 1][0]
|
dev = ring.devs[1]
|
||||||
self.assertEqual(dev['weight'], 100)
|
self.assertEqual(dev['weight'], 100)
|
||||||
|
|
||||||
# Check that weight was changed
|
# Check that weight was changed
|
||||||
dev = [d for d in ring.devs if d['id'] == 2][0]
|
dev = ring.devs[-1]
|
||||||
self.assertEqual(dev['weight'], 3.14159265359)
|
self.assertEqual(dev['weight'], 3.14159265359)
|
||||||
|
|
||||||
# Final check, rebalance and check ring is ok
|
# Final check, rebalance and check ring is ok
|
||||||
@ -927,14 +942,14 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
|
|
||||||
# Check that device was created with given data
|
# Check that device was created with given data
|
||||||
ring = RingBuilder.load(self.tmpfile)
|
ring = RingBuilder.load(self.tmpfile)
|
||||||
dev = [d for d in ring.devs if d['id'] == 0][0]
|
dev = ring.devs[0]
|
||||||
self.assertEqual(dev['ip'], '127.0.1.1')
|
self.assertEqual(dev['ip'], '127.0.1.1')
|
||||||
self.assertEqual(dev['port'], 8000)
|
self.assertEqual(dev['port'], 8000)
|
||||||
self.assertEqual(dev['device'], 'sda1')
|
self.assertEqual(dev['device'], 'sda1')
|
||||||
self.assertEqual(dev['meta'], 'other meta data')
|
self.assertEqual(dev['meta'], 'other meta data')
|
||||||
|
|
||||||
# Check that second device in ring is not affected
|
# Check that second device in ring is not affected
|
||||||
dev = [d for d in ring.devs if d['id'] == 1][0]
|
dev = ring.devs[1]
|
||||||
self.assertEqual(dev['ip'], '127.0.0.2')
|
self.assertEqual(dev['ip'], '127.0.0.2')
|
||||||
self.assertEqual(dev['port'], 6001)
|
self.assertEqual(dev['port'], 6001)
|
||||||
self.assertEqual(dev['device'], 'sda2')
|
self.assertEqual(dev['device'], 'sda2')
|
||||||
@ -954,7 +969,7 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
|
|
||||||
# Check that device was created with given data
|
# Check that device was created with given data
|
||||||
ring = RingBuilder.load(self.tmpfile)
|
ring = RingBuilder.load(self.tmpfile)
|
||||||
dev = [d for d in ring.devs if d['id'] == 0][0]
|
dev = ring.devs[0]
|
||||||
self.assertEqual(dev['ip'], '127.0.1.1')
|
self.assertEqual(dev['ip'], '127.0.1.1')
|
||||||
self.assertEqual(dev['port'], 8000)
|
self.assertEqual(dev['port'], 8000)
|
||||||
self.assertEqual(dev['replication_ip'], '127.0.1.1')
|
self.assertEqual(dev['replication_ip'], '127.0.1.1')
|
||||||
@ -963,7 +978,7 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
self.assertEqual(dev['meta'], 'other meta data')
|
self.assertEqual(dev['meta'], 'other meta data')
|
||||||
|
|
||||||
# Check that second device in ring is not affected
|
# Check that second device in ring is not affected
|
||||||
dev = [d for d in ring.devs if d['id'] == 1][0]
|
dev = ring.devs[1]
|
||||||
self.assertEqual(dev['ip'], '127.0.0.2')
|
self.assertEqual(dev['ip'], '127.0.0.2')
|
||||||
self.assertEqual(dev['port'], 6001)
|
self.assertEqual(dev['port'], 6001)
|
||||||
self.assertEqual(dev['device'], 'sda2')
|
self.assertEqual(dev['device'], 'sda2')
|
||||||
@ -989,7 +1004,7 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
|
|
||||||
# Test ipv6(old format)
|
# Test ipv6(old format)
|
||||||
argv = ["", self.tmpfile, "set_info",
|
argv = ["", self.tmpfile, "set_info",
|
||||||
"d2r2z3-[2001:0000:1234:0000:0000:C1C0:ABCD:0876]:6000"
|
"d4r2z3-[2001:0000:1234:0000:0000:C1C0:ABCD:0876]:6000"
|
||||||
"R[2::10]:7000/sda3_some meta data",
|
"R[2::10]:7000/sda3_some meta data",
|
||||||
"[3001:0000:1234:0000:0000:C1C0:ABCD:0876]:8000"
|
"[3001:0000:1234:0000:0000:C1C0:ABCD:0876]:8000"
|
||||||
"R[3::10]:8000/sda30_other meta data"]
|
"R[3::10]:8000/sda30_other meta data"]
|
||||||
@ -997,7 +1012,7 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
ring = RingBuilder.load(self.tmpfile)
|
ring = RingBuilder.load(self.tmpfile)
|
||||||
|
|
||||||
# Check that second device in ring is not affected
|
# Check that second device in ring is not affected
|
||||||
dev = [d for d in ring.devs if d['id'] == 0][0]
|
dev = ring.devs[0]
|
||||||
self.assertEqual(dev['ip'], '127.0.0.1')
|
self.assertEqual(dev['ip'], '127.0.0.1')
|
||||||
self.assertEqual(dev['port'], 6000)
|
self.assertEqual(dev['port'], 6000)
|
||||||
self.assertEqual(dev['replication_ip'], '127.0.0.1')
|
self.assertEqual(dev['replication_ip'], '127.0.0.1')
|
||||||
@ -1006,15 +1021,14 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
self.assertEqual(dev['meta'], 'some meta data')
|
self.assertEqual(dev['meta'], 'some meta data')
|
||||||
|
|
||||||
# Check that second device in ring is not affected
|
# Check that second device in ring is not affected
|
||||||
dev = [d for d in ring.devs if d['id'] == 1][0]
|
dev = ring.devs[1]
|
||||||
self.assertEqual(dev['ip'], '127.0.0.2')
|
self.assertEqual(dev['ip'], '127.0.0.2')
|
||||||
self.assertEqual(dev['port'], 6001)
|
self.assertEqual(dev['port'], 6001)
|
||||||
self.assertEqual(dev['device'], 'sda2')
|
self.assertEqual(dev['device'], 'sda2')
|
||||||
self.assertEqual(dev['meta'], '')
|
self.assertEqual(dev['meta'], '')
|
||||||
|
|
||||||
# Check that device was created with given data
|
# Check that device was created with given data
|
||||||
ring = RingBuilder.load(self.tmpfile)
|
dev = ring.devs[-1]
|
||||||
dev = [d for d in ring.devs if d['id'] == 2][0]
|
|
||||||
self.assertEqual(dev['ip'], '3001:0:1234::c1c0:abcd:876')
|
self.assertEqual(dev['ip'], '3001:0:1234::c1c0:abcd:876')
|
||||||
self.assertEqual(dev['port'], 8000)
|
self.assertEqual(dev['port'], 8000)
|
||||||
self.assertEqual(dev['replication_ip'], '3::10')
|
self.assertEqual(dev['replication_ip'], '3::10')
|
||||||
@ -1046,7 +1060,7 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
|
|
||||||
# Check that device was created with given data
|
# Check that device was created with given data
|
||||||
ring = RingBuilder.load(self.tmpfile)
|
ring = RingBuilder.load(self.tmpfile)
|
||||||
dev = [d for d in ring.devs if d['id'] == 0][0]
|
dev = ring.devs[0]
|
||||||
self.assertEqual(dev['ip'], '127.0.2.1')
|
self.assertEqual(dev['ip'], '127.0.2.1')
|
||||||
self.assertEqual(dev['port'], 9000)
|
self.assertEqual(dev['port'], 9000)
|
||||||
self.assertEqual(dev['replication_ip'], '127.0.2.1')
|
self.assertEqual(dev['replication_ip'], '127.0.2.1')
|
||||||
@ -1055,7 +1069,7 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
self.assertEqual(dev['meta'], 'other meta data')
|
self.assertEqual(dev['meta'], 'other meta data')
|
||||||
|
|
||||||
# Check that second device in ring is not affected
|
# Check that second device in ring is not affected
|
||||||
dev = [d for d in ring.devs if d['id'] == 1][0]
|
dev = ring.devs[1]
|
||||||
self.assertEqual(dev['ip'], '127.0.0.2')
|
self.assertEqual(dev['ip'], '127.0.0.2')
|
||||||
self.assertEqual(dev['port'], 6001)
|
self.assertEqual(dev['port'], 6001)
|
||||||
self.assertEqual(dev['device'], 'sda2')
|
self.assertEqual(dev['device'], 'sda2')
|
||||||
@ -1082,7 +1096,7 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
# Test ipv6(new format)
|
# Test ipv6(new format)
|
||||||
argv = \
|
argv = \
|
||||||
["", self.tmpfile, "set_info",
|
["", self.tmpfile, "set_info",
|
||||||
"--id", "2", "--region", "2", "--zone", "3",
|
"--id", "4", "--region", "2", "--zone", "3",
|
||||||
"--ip", "[2001:0000:1234:0000:0000:C1C0:ABCD:0876]",
|
"--ip", "[2001:0000:1234:0000:0000:C1C0:ABCD:0876]",
|
||||||
"--port", "6000",
|
"--port", "6000",
|
||||||
"--replication-ip", "[2::10]",
|
"--replication-ip", "[2::10]",
|
||||||
@ -1097,7 +1111,7 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
ring = RingBuilder.load(self.tmpfile)
|
ring = RingBuilder.load(self.tmpfile)
|
||||||
|
|
||||||
# Check that second device in ring is not affected
|
# Check that second device in ring is not affected
|
||||||
dev = [d for d in ring.devs if d['id'] == 0][0]
|
dev = ring.devs[0]
|
||||||
self.assertEqual(dev['ip'], '127.0.0.1')
|
self.assertEqual(dev['ip'], '127.0.0.1')
|
||||||
self.assertEqual(dev['port'], 6000)
|
self.assertEqual(dev['port'], 6000)
|
||||||
self.assertEqual(dev['replication_ip'], '127.0.0.1')
|
self.assertEqual(dev['replication_ip'], '127.0.0.1')
|
||||||
@ -1106,7 +1120,7 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
self.assertEqual(dev['meta'], 'some meta data')
|
self.assertEqual(dev['meta'], 'some meta data')
|
||||||
|
|
||||||
# Check that second device in ring is not affected
|
# Check that second device in ring is not affected
|
||||||
dev = [d for d in ring.devs if d['id'] == 1][0]
|
dev = ring.devs[1]
|
||||||
self.assertEqual(dev['ip'], '127.0.0.2')
|
self.assertEqual(dev['ip'], '127.0.0.2')
|
||||||
self.assertEqual(dev['port'], 6001)
|
self.assertEqual(dev['port'], 6001)
|
||||||
self.assertEqual(dev['device'], 'sda2')
|
self.assertEqual(dev['device'], 'sda2')
|
||||||
@ -1114,7 +1128,7 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
|
|
||||||
# Check that device was created with given data
|
# Check that device was created with given data
|
||||||
ring = RingBuilder.load(self.tmpfile)
|
ring = RingBuilder.load(self.tmpfile)
|
||||||
dev = [d for d in ring.devs if d['id'] == 2][0]
|
dev = ring.devs[-1]
|
||||||
self.assertEqual(dev['ip'], '4001:0:1234::c1c0:abcd:876')
|
self.assertEqual(dev['ip'], '4001:0:1234::c1c0:abcd:876')
|
||||||
self.assertEqual(dev['port'], 9000)
|
self.assertEqual(dev['port'], 9000)
|
||||||
self.assertEqual(dev['replication_ip'], '4::10')
|
self.assertEqual(dev['replication_ip'], '4::10')
|
||||||
@ -1143,7 +1157,7 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
# Test domain name
|
# Test domain name
|
||||||
argv = \
|
argv = \
|
||||||
["", self.tmpfile, "set_info",
|
["", self.tmpfile, "set_info",
|
||||||
"--id", "2", "--region", "2", "--zone", "3",
|
"--id", "4", "--region", "2", "--zone", "3",
|
||||||
"--ip", "test.test.com",
|
"--ip", "test.test.com",
|
||||||
"--port", "6000",
|
"--port", "6000",
|
||||||
"--replication-ip", "r.test.com",
|
"--replication-ip", "r.test.com",
|
||||||
@ -1158,7 +1172,7 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
ring = RingBuilder.load(self.tmpfile)
|
ring = RingBuilder.load(self.tmpfile)
|
||||||
|
|
||||||
# Check that second device in ring is not affected
|
# Check that second device in ring is not affected
|
||||||
dev = [d for d in ring.devs if d['id'] == 0][0]
|
dev = ring.devs[0]
|
||||||
self.assertEqual(dev['ip'], '127.0.0.1')
|
self.assertEqual(dev['ip'], '127.0.0.1')
|
||||||
self.assertEqual(dev['port'], 6000)
|
self.assertEqual(dev['port'], 6000)
|
||||||
self.assertEqual(dev['replication_ip'], '127.0.0.1')
|
self.assertEqual(dev['replication_ip'], '127.0.0.1')
|
||||||
@ -1167,15 +1181,14 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
self.assertEqual(dev['meta'], 'some meta data')
|
self.assertEqual(dev['meta'], 'some meta data')
|
||||||
|
|
||||||
# Check that second device in ring is not affected
|
# Check that second device in ring is not affected
|
||||||
dev = [d for d in ring.devs if d['id'] == 1][0]
|
dev = ring.devs[1]
|
||||||
self.assertEqual(dev['ip'], '127.0.0.2')
|
self.assertEqual(dev['ip'], '127.0.0.2')
|
||||||
self.assertEqual(dev['port'], 6001)
|
self.assertEqual(dev['port'], 6001)
|
||||||
self.assertEqual(dev['device'], 'sda2')
|
self.assertEqual(dev['device'], 'sda2')
|
||||||
self.assertEqual(dev['meta'], '')
|
self.assertEqual(dev['meta'], '')
|
||||||
|
|
||||||
# Check that device was created with given data
|
# Check that device was created with given data
|
||||||
ring = RingBuilder.load(self.tmpfile)
|
dev = ring.devs[-1]
|
||||||
dev = [d for d in ring.devs if d['id'] == 2][0]
|
|
||||||
self.assertEqual(dev['ip'], 'test.test2.com')
|
self.assertEqual(dev['ip'], 'test.test2.com')
|
||||||
self.assertEqual(dev['port'], 9000)
|
self.assertEqual(dev['port'], 9000)
|
||||||
self.assertEqual(dev['replication_ip'], 'r.test2.com')
|
self.assertEqual(dev['replication_ip'], 'r.test2.com')
|
||||||
@ -1705,7 +1718,15 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
self.assertEqual(err.code, 2)
|
self.assertEqual(err.code, 2)
|
||||||
|
|
||||||
def test_warn_at_risk(self):
|
def test_warn_at_risk(self):
|
||||||
self.create_sample_ring()
|
# when the number of total part replicas (3 * 2 ** 4 = 48 in
|
||||||
|
# this ring) is less than the total units of weight (310 in this
|
||||||
|
# ring) the relative number of parts per unit of weight (called
|
||||||
|
# weight_of_one_part) is less than 1 - and each whole part
|
||||||
|
# placed takes up a larger ratio of the fractional number of
|
||||||
|
# parts the device wants - so it's much more difficult to
|
||||||
|
# satisfy a device's weight exactly - that is to say less parts
|
||||||
|
# to go around tends to make things lumpy
|
||||||
|
self.create_sample_ring(4)
|
||||||
ring = RingBuilder.load(self.tmpfile)
|
ring = RingBuilder.load(self.tmpfile)
|
||||||
ring.devs[0]['weight'] = 10
|
ring.devs[0]['weight'] = 10
|
||||||
ring.save(self.tmpfile)
|
ring.save(self.tmpfile)
|
||||||
@ -1717,6 +1738,27 @@ class TestCommands(unittest.TestCase, RunSwiftRingBuilderMixin):
|
|||||||
err = e
|
err = e
|
||||||
self.assertEqual(err.code, 1)
|
self.assertEqual(err.code, 1)
|
||||||
|
|
||||||
|
def test_no_warn_when_balanced(self):
|
||||||
|
# when the number of total part replicas (3 * 2 ** 10 = 3072 in
|
||||||
|
# this ring) is larger than the total units of weight (310 in
|
||||||
|
# this ring) the relative number of parts per unit of weight
|
||||||
|
# (called weight_of_one_part) is more than 1 - and each whole
|
||||||
|
# part placed takes up a smaller ratio of the larger number of
|
||||||
|
# parts the device wants - so it's much easier to satisfy a
|
||||||
|
# device's weight exactly - that is to say more parts to go
|
||||||
|
# around tends to smooth things out
|
||||||
|
self.create_sample_ring(10)
|
||||||
|
ring = RingBuilder.load(self.tmpfile)
|
||||||
|
ring.devs[0]['weight'] = 10
|
||||||
|
ring.save(self.tmpfile)
|
||||||
|
argv = ["", self.tmpfile, "rebalance"]
|
||||||
|
err = None
|
||||||
|
try:
|
||||||
|
ringbuilder.main(argv)
|
||||||
|
except SystemExit as e:
|
||||||
|
err = e
|
||||||
|
self.assertEqual(err.code, 0)
|
||||||
|
|
||||||
def test_invalid_device_name(self):
|
def test_invalid_device_name(self):
|
||||||
self.create_sample_ring()
|
self.create_sample_ring()
|
||||||
for device_name in ["", " ", " sda1", "sda1 ", " meta "]:
|
for device_name in ["", " ", " sda1", "sda1 ", " meta "]:
|
||||||
|
@ -25,12 +25,13 @@ from collections import defaultdict
|
|||||||
from math import ceil
|
from math import ceil
|
||||||
from tempfile import mkdtemp
|
from tempfile import mkdtemp
|
||||||
from shutil import rmtree
|
from shutil import rmtree
|
||||||
|
import warnings
|
||||||
|
|
||||||
from six.moves import range
|
from six.moves import range
|
||||||
|
|
||||||
from swift.common import exceptions
|
from swift.common import exceptions
|
||||||
from swift.common import ring
|
from swift.common import ring
|
||||||
from swift.common.ring.builder import MAX_BALANCE
|
from swift.common.ring.builder import MAX_BALANCE, RingValidationWarning
|
||||||
|
|
||||||
|
|
||||||
class TestRingBuilder(unittest.TestCase):
|
class TestRingBuilder(unittest.TestCase):
|
||||||
@ -41,15 +42,15 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
def tearDown(self):
|
def tearDown(self):
|
||||||
rmtree(self.testdir, ignore_errors=1)
|
rmtree(self.testdir, ignore_errors=1)
|
||||||
|
|
||||||
def _partition_counts(self, builder):
|
def _partition_counts(self, builder, key='id'):
|
||||||
"""
|
"""
|
||||||
Returns a dictionary mapping (device ID) to (number of partitions
|
Returns a dictionary mapping the given device key to (number of
|
||||||
assigned to that device).
|
partitions assigned to to that key).
|
||||||
"""
|
"""
|
||||||
counts = {}
|
counts = defaultdict(int)
|
||||||
for part2dev_id in builder._replica2part2dev:
|
for part2dev_id in builder._replica2part2dev:
|
||||||
for dev_id in part2dev_id:
|
for dev_id in part2dev_id:
|
||||||
counts[dev_id] = counts.get(dev_id, 0) + 1
|
counts[builder.devs[dev_id][key]] += 1
|
||||||
return counts
|
return counts
|
||||||
|
|
||||||
def _get_population_by_region(self, builder):
|
def _get_population_by_region(self, builder):
|
||||||
@ -57,13 +58,7 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
Returns a dictionary mapping region to number of partitions in that
|
Returns a dictionary mapping region to number of partitions in that
|
||||||
region.
|
region.
|
||||||
"""
|
"""
|
||||||
population_by_region = defaultdict(int)
|
return self._partition_counts(builder, key='region')
|
||||||
r = builder.get_ring()
|
|
||||||
for part2dev_id in r._replica2part2dev_id:
|
|
||||||
for dev_id in part2dev_id:
|
|
||||||
dev = r.devs[dev_id]
|
|
||||||
population_by_region[dev['region']] += 1
|
|
||||||
return dict(population_by_region.items())
|
|
||||||
|
|
||||||
def test_init(self):
|
def test_init(self):
|
||||||
rb = ring.RingBuilder(8, 3, 1)
|
rb = ring.RingBuilder(8, 3, 1)
|
||||||
@ -91,12 +86,24 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
rb = ring.RingBuilder(8, 3, 1)
|
rb = ring.RingBuilder(8, 3, 1)
|
||||||
rb.add_dev({'id': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
rb.add_dev({'id': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 4, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdb1'})
|
||||||
|
|
||||||
rb.add_dev({'id': 1, 'region': 0, 'zone': 1, 'weight': 1,
|
rb.add_dev({'id': 1, 'region': 0, 'zone': 1, 'weight': 1,
|
||||||
'ip': '127.0.0.1', 'port': 10001, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 5, 'region': 0, 'zone': 1, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sdb1'})
|
||||||
|
|
||||||
rb.add_dev({'id': 2, 'region': 0, 'zone': 2, 'weight': 1,
|
rb.add_dev({'id': 2, 'region': 0, 'zone': 2, 'weight': 1,
|
||||||
'ip': '127.0.0.1', 'port': 10002, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10002, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 6, 'region': 0, 'zone': 2, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10002, 'device': 'sdb1'})
|
||||||
|
|
||||||
|
# more devices in zone #1
|
||||||
rb.add_dev({'id': 3, 'region': 0, 'zone': 1, 'weight': 1,
|
rb.add_dev({'id': 3, 'region': 0, 'zone': 1, 'weight': 1,
|
||||||
'ip': '127.0.0.1', 'port': 10004, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10004, 'device': 'sdc1'})
|
||||||
|
rb.add_dev({'id': 7, 'region': 0, 'zone': 1, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10004, 'device': 'sdd1'})
|
||||||
rb.rebalance()
|
rb.rebalance()
|
||||||
rb_copy = copy.deepcopy(rb)
|
rb_copy = copy.deepcopy(rb)
|
||||||
|
|
||||||
@ -134,9 +141,13 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
ring_builders = []
|
ring_builders = []
|
||||||
for n in range(3):
|
for n in range(3):
|
||||||
rb = ring.RingBuilder(8, 3, 1)
|
rb = ring.RingBuilder(8, 3, 1)
|
||||||
for idx, (zone, port) in enumerate(devs):
|
idx = 0
|
||||||
rb.add_dev({'id': idx, 'region': 0, 'zone': zone, 'weight': 1,
|
for zone, port in devs:
|
||||||
'ip': '127.0.0.1', 'port': port, 'device': 'sda1'})
|
for d in ('sda1', 'sdb1'):
|
||||||
|
rb.add_dev({'id': idx, 'region': 0, 'zone': zone,
|
||||||
|
'ip': '127.0.0.1', 'port': port,
|
||||||
|
'device': d, 'weight': 1})
|
||||||
|
idx += 1
|
||||||
ring_builders.append(rb)
|
ring_builders.append(rb)
|
||||||
|
|
||||||
rb0 = ring_builders[0]
|
rb0 = ring_builders[0]
|
||||||
@ -471,22 +482,28 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
(part, dev_id, replica_count, counts['dev_id']))
|
(part, dev_id, replica_count, counts['dev_id']))
|
||||||
|
|
||||||
def test_multitier_overfull(self):
|
def test_multitier_overfull(self):
|
||||||
# Multitier test, #replicas > #devs + 2 (to prove even distribution)
|
# Multitier test, #replicas > #zones (to prove even distribution)
|
||||||
rb = ring.RingBuilder(8, 8, 1)
|
rb = ring.RingBuilder(8, 8, 1)
|
||||||
rb.add_dev({'id': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
rb.add_dev({'id': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda'})
|
||||||
rb.add_dev({'id': 1, 'region': 0, 'zone': 0, 'weight': 1,
|
rb.add_dev({'id': 1, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdb'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdb'})
|
||||||
|
rb.add_dev({'id': 6, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdg'})
|
||||||
|
|
||||||
rb.add_dev({'id': 2, 'region': 0, 'zone': 1, 'weight': 1,
|
rb.add_dev({'id': 2, 'region': 0, 'zone': 1, 'weight': 1,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdc'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdc'})
|
||||||
rb.add_dev({'id': 3, 'region': 0, 'zone': 1, 'weight': 1,
|
rb.add_dev({'id': 3, 'region': 0, 'zone': 1, 'weight': 1,
|
||||||
'ip': '127.0.0.1', 'port': 10001, 'device': 'sdd'})
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sdd'})
|
||||||
|
rb.add_dev({'id': 7, 'region': 0, 'zone': 1, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sdh'})
|
||||||
|
|
||||||
rb.add_dev({'id': 4, 'region': 0, 'zone': 2, 'weight': 1,
|
rb.add_dev({'id': 4, 'region': 0, 'zone': 2, 'weight': 1,
|
||||||
'ip': '127.0.0.1', 'port': 10001, 'device': 'sde'})
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sde'})
|
||||||
rb.add_dev({'id': 5, 'region': 0, 'zone': 2, 'weight': 1,
|
rb.add_dev({'id': 5, 'region': 0, 'zone': 2, 'weight': 1,
|
||||||
'ip': '127.0.0.1', 'port': 10001, 'device': 'sdf'})
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sdf'})
|
||||||
|
rb.add_dev({'id': 8, 'region': 0, 'zone': 2, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sdi'})
|
||||||
|
|
||||||
rb.rebalance()
|
rb.rebalance()
|
||||||
rb.validate()
|
rb.validate()
|
||||||
@ -513,21 +530,33 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
|
|
||||||
def test_multitier_expansion_more_devices(self):
|
def test_multitier_expansion_more_devices(self):
|
||||||
rb = ring.RingBuilder(8, 6, 1)
|
rb = ring.RingBuilder(8, 6, 1)
|
||||||
rb.add_dev({'id': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
rb.add_dev({'id': 0, 'region': 0, 'zone': 0, 'weight': 0.5,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda'})
|
||||||
rb.add_dev({'id': 1, 'region': 0, 'zone': 1, 'weight': 1,
|
rb.add_dev({'id': 1, 'region': 0, 'zone': 1, 'weight': 0.5,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdb'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdb'})
|
||||||
rb.add_dev({'id': 2, 'region': 0, 'zone': 2, 'weight': 1,
|
rb.add_dev({'id': 2, 'region': 0, 'zone': 2, 'weight': 0.5,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdc'})
|
||||||
|
rb.add_dev({'id': 6, 'region': 0, 'zone': 0, 'weight': 0.5,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda'})
|
||||||
|
rb.add_dev({'id': 7, 'region': 0, 'zone': 1, 'weight': 0.5,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdb'})
|
||||||
|
rb.add_dev({'id': 8, 'region': 0, 'zone': 2, 'weight': 0.5,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdc'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdc'})
|
||||||
|
|
||||||
rb.rebalance()
|
rb.rebalance()
|
||||||
rb.validate()
|
rb.validate()
|
||||||
|
|
||||||
rb.add_dev({'id': 3, 'region': 0, 'zone': 0, 'weight': 1,
|
rb.add_dev({'id': 3, 'region': 0, 'zone': 0, 'weight': 0.5,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdd'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdd'})
|
||||||
rb.add_dev({'id': 4, 'region': 0, 'zone': 1, 'weight': 1,
|
rb.add_dev({'id': 4, 'region': 0, 'zone': 1, 'weight': 0.5,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sde'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sde'})
|
||||||
rb.add_dev({'id': 5, 'region': 0, 'zone': 2, 'weight': 1,
|
rb.add_dev({'id': 5, 'region': 0, 'zone': 2, 'weight': 0.5,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdf'})
|
||||||
|
rb.add_dev({'id': 9, 'region': 0, 'zone': 0, 'weight': 0.5,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdd'})
|
||||||
|
rb.add_dev({'id': 10, 'region': 0, 'zone': 1, 'weight': 0.5,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sde'})
|
||||||
|
rb.add_dev({'id': 11, 'region': 0, 'zone': 2, 'weight': 0.5,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdf'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdf'})
|
||||||
|
|
||||||
for _ in range(5):
|
for _ in range(5):
|
||||||
@ -544,13 +573,18 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
counts['dev_id'][dev['id']] += 1
|
counts['dev_id'][dev['id']] += 1
|
||||||
|
|
||||||
self.assertEquals({0: 2, 1: 2, 2: 2}, dict(counts['zone']))
|
self.assertEquals({0: 2, 1: 2, 2: 2}, dict(counts['zone']))
|
||||||
self.assertEquals({0: 1, 1: 1, 2: 1, 3: 1, 4: 1, 5: 1},
|
# each part is assigned once to six unique devices
|
||||||
dict(counts['dev_id']))
|
self.assertEqual((counts['dev_id'].values()), [1] * 6)
|
||||||
|
self.assertEqual(len(set(counts['dev_id'].keys())), 6)
|
||||||
|
|
||||||
def test_multitier_part_moves_with_0_min_part_hours(self):
|
def test_multitier_part_moves_with_0_min_part_hours(self):
|
||||||
rb = ring.RingBuilder(8, 3, 0)
|
rb = ring.RingBuilder(8, 3, 0)
|
||||||
rb.add_dev({'id': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
rb.add_dev({'id': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 3, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdd1'})
|
||||||
|
rb.add_dev({'id': 4, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sde1'})
|
||||||
rb.rebalance()
|
rb.rebalance()
|
||||||
rb.validate()
|
rb.validate()
|
||||||
|
|
||||||
@ -576,14 +610,18 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
rb = ring.RingBuilder(8, 3, 99)
|
rb = ring.RingBuilder(8, 3, 99)
|
||||||
rb.add_dev({'id': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
rb.add_dev({'id': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 3, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdd1'})
|
||||||
|
rb.add_dev({'id': 4, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sde1'})
|
||||||
rb.rebalance()
|
rb.rebalance()
|
||||||
rb.validate()
|
rb.validate()
|
||||||
|
|
||||||
# min_part_hours is >0, so we'll only be able to move 1
|
# min_part_hours is >0, so we'll only be able to move 1
|
||||||
# replica to a new home
|
# replica to a new home
|
||||||
rb.add_dev({'id': 1, 'region': 0, 'zone': 0, 'weight': 1,
|
rb.add_dev({'id': 1, 'region': 0, 'zone': 1, 'weight': 1,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdb1'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdb1'})
|
||||||
rb.add_dev({'id': 2, 'region': 0, 'zone': 0, 'weight': 1,
|
rb.add_dev({'id': 2, 'region': 0, 'zone': 1, 'weight': 1,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdc1'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdc1'})
|
||||||
rb.pretend_min_part_hours_passed()
|
rb.pretend_min_part_hours_passed()
|
||||||
rb.rebalance()
|
rb.rebalance()
|
||||||
@ -593,17 +631,20 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
devs = set()
|
devs = set()
|
||||||
for replica in range(rb.replicas):
|
for replica in range(rb.replicas):
|
||||||
devs.add(rb._replica2part2dev[replica][part])
|
devs.add(rb._replica2part2dev[replica][part])
|
||||||
|
if not any(rb.devs[dev_id]['zone'] == 1 for dev_id in devs):
|
||||||
if len(devs) != 2:
|
|
||||||
raise AssertionError(
|
raise AssertionError(
|
||||||
"Partition %d not on 2 devs (got %r)" % (part, devs))
|
"Partition %d did not move (got %r)" % (part, devs))
|
||||||
|
|
||||||
def test_multitier_dont_move_too_many_replicas(self):
|
def test_multitier_dont_move_too_many_replicas(self):
|
||||||
rb = ring.RingBuilder(8, 3, 0)
|
rb = ring.RingBuilder(8, 3, 0)
|
||||||
# there'll be at least one replica in z0 and z1
|
# there'll be at least one replica in z0 and z1
|
||||||
rb.add_dev({'id': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
rb.add_dev({'id': 0, 'region': 0, 'zone': 0, 'weight': 0.5,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda1'})
|
||||||
rb.add_dev({'id': 1, 'region': 0, 'zone': 1, 'weight': 1,
|
rb.add_dev({'id': 1, 'region': 0, 'zone': 1, 'weight': 0.5,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdb1'})
|
||||||
|
rb.add_dev({'id': 5, 'region': 0, 'zone': 0, 'weight': 0.5,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 6, 'region': 0, 'zone': 1, 'weight': 0.5,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdb1'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdb1'})
|
||||||
rb.rebalance()
|
rb.rebalance()
|
||||||
rb.validate()
|
rb.validate()
|
||||||
@ -677,6 +718,7 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
'ip': '127.0.0.1', 'port': 10002, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10002, 'device': 'sda1'})
|
||||||
|
|
||||||
rb.rebalance()
|
rb.rebalance()
|
||||||
|
rb.validate()
|
||||||
|
|
||||||
rb.add_dev({'id': 3, 'region': 0, 'zone': 0, 'weight': 1,
|
rb.add_dev({'id': 3, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
'ip': '127.0.0.1', 'port': 10003, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10003, 'device': 'sda1'})
|
||||||
@ -686,19 +728,32 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
'ip': '127.0.0.1', 'port': 10005, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10005, 'device': 'sda1'})
|
||||||
|
|
||||||
rb.rebalance()
|
rb.rebalance()
|
||||||
|
rb.validate()
|
||||||
|
|
||||||
rb.remove_dev(1)
|
rb.remove_dev(1)
|
||||||
|
|
||||||
|
# well now we have only one device in z0
|
||||||
|
rb.set_overload(0.5)
|
||||||
|
|
||||||
rb.rebalance()
|
rb.rebalance()
|
||||||
|
rb.validate()
|
||||||
|
|
||||||
def test_remove_last_partition_from_zero_weight(self):
|
def test_remove_last_partition_from_zero_weight(self):
|
||||||
rb = ring.RingBuilder(4, 3, 1)
|
rb = ring.RingBuilder(4, 3, 1)
|
||||||
rb.add_dev({'id': 0, 'region': 0, 'zone': 1, 'weight': 1.0,
|
rb.add_dev({'id': 0, 'region': 0, 'zone': 1, 'weight': 1.0,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda'})
|
||||||
rb.add_dev({'id': 1, 'region': 0, 'zone': 2, 'weight': 2.0,
|
|
||||||
|
rb.add_dev({'id': 1, 'region': 0, 'zone': 2, 'weight': 1.0,
|
||||||
'ip': '127.0.0.2', 'port': 10000, 'device': 'sda'})
|
'ip': '127.0.0.2', 'port': 10000, 'device': 'sda'})
|
||||||
rb.add_dev({'id': 2, 'region': 0, 'zone': 3, 'weight': 3.0,
|
rb.add_dev({'id': 4, 'region': 0, 'zone': 2, 'weight': 1.0,
|
||||||
|
'ip': '127.0.0.2', 'port': 10000, 'device': 'sdb'})
|
||||||
|
|
||||||
|
rb.add_dev({'id': 2, 'region': 0, 'zone': 3, 'weight': 1.0,
|
||||||
'ip': '127.0.0.3', 'port': 10000, 'device': 'sda'})
|
'ip': '127.0.0.3', 'port': 10000, 'device': 'sda'})
|
||||||
|
rb.add_dev({'id': 5, 'region': 0, 'zone': 3, 'weight': 1.0,
|
||||||
|
'ip': '127.0.0.3', 'port': 10000, 'device': 'sdb'})
|
||||||
|
rb.add_dev({'id': 6, 'region': 0, 'zone': 3, 'weight': 1.0,
|
||||||
|
'ip': '127.0.0.3', 'port': 10000, 'device': 'sdc'})
|
||||||
|
|
||||||
rb.add_dev({'id': 3, 'region': 0, 'zone': 3, 'weight': 0.5,
|
rb.add_dev({'id': 3, 'region': 0, 'zone': 3, 'weight': 0.5,
|
||||||
'ip': '127.0.0.3', 'port': 10001, 'device': 'zero'})
|
'ip': '127.0.0.3', 'port': 10001, 'device': 'zero'})
|
||||||
@ -722,11 +777,11 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
# big to include here.
|
# big to include here.
|
||||||
rb._replica2part2dev = [
|
rb._replica2part2dev = [
|
||||||
# these are the relevant ones
|
# these are the relevant ones
|
||||||
# | | | |
|
# | | |
|
||||||
# v v v v
|
# v v v
|
||||||
array('H', [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]),
|
array('H', [2, 5, 6, 2, 5, 6, 2, 5, 6, 2, 5, 6, 2, 5, 6, 2]),
|
||||||
array('H', [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2]),
|
array('H', [1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4]),
|
||||||
array('H', [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 2, 2, 2, 2])]
|
array('H', [0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 5, 6, 2, 5, 6])]
|
||||||
|
|
||||||
rb.set_dev_weight(zero_weight_dev, 0.0)
|
rb.set_dev_weight(zero_weight_dev, 0.0)
|
||||||
rb.pretend_min_part_hours_passed()
|
rb.pretend_min_part_hours_passed()
|
||||||
@ -788,10 +843,23 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
|
|
||||||
def test_adding_region_slowly_with_unbalanceable_ring(self):
|
def test_adding_region_slowly_with_unbalanceable_ring(self):
|
||||||
rb = ring.RingBuilder(8, 3, 1)
|
rb = ring.RingBuilder(8, 3, 1)
|
||||||
rb.add_dev({'id': 0, 'region': 0, 'zone': 0, 'weight': 2,
|
rb.add_dev({'id': 0, 'region': 0, 'zone': 0, 'weight': 0.5,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda1'})
|
||||||
rb.add_dev({'id': 1, 'region': 0, 'zone': 1, 'weight': 2,
|
rb.add_dev({'id': 4, 'region': 0, 'zone': 0, 'weight': 0.5,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdb1'})
|
||||||
|
rb.add_dev({'id': 5, 'region': 0, 'zone': 0, 'weight': 0.5,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdc1'})
|
||||||
|
rb.add_dev({'id': 6, 'region': 0, 'zone': 0, 'weight': 0.5,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdd1'})
|
||||||
|
|
||||||
|
rb.add_dev({'id': 1, 'region': 0, 'zone': 1, 'weight': 0.5,
|
||||||
'ip': '127.0.0.1', 'port': 10001, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 7, 'region': 0, 'zone': 1, 'weight': 0.5,
|
||||||
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sdb1'})
|
||||||
|
rb.add_dev({'id': 8, 'region': 0, 'zone': 1, 'weight': 0.5,
|
||||||
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sdc1'})
|
||||||
|
rb.add_dev({'id': 9, 'region': 0, 'zone': 1, 'weight': 0.5,
|
||||||
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sdd1'})
|
||||||
rb.rebalance(seed=2)
|
rb.rebalance(seed=2)
|
||||||
|
|
||||||
rb.add_dev({'id': 2, 'region': 1, 'zone': 0, 'weight': 0.25,
|
rb.add_dev({'id': 2, 'region': 1, 'zone': 0, 'weight': 0.25,
|
||||||
@ -807,12 +875,15 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
population_by_region = self._get_population_by_region(rb)
|
population_by_region = self._get_population_by_region(rb)
|
||||||
self.assertEquals(population_by_region, {0: 682, 1: 86})
|
self.assertEquals(population_by_region, {0: 682, 1: 86})
|
||||||
|
|
||||||
self.assertEqual(87, changed_parts)
|
# only 86 parts *should* move (to the new region) but randomly some
|
||||||
|
# parts will flop around devices in the original region too
|
||||||
|
self.assertEqual(90, changed_parts)
|
||||||
|
|
||||||
# and since there's not enough room, subsequent rebalances will not
|
# and since there's not enough room, subsequent rebalances will not
|
||||||
# cause additional assignments to r1
|
# cause additional assignments to r1
|
||||||
rb.pretend_min_part_hours_passed()
|
rb.pretend_min_part_hours_passed()
|
||||||
rb.rebalance(seed=2)
|
rb.rebalance(seed=2)
|
||||||
|
rb.validate()
|
||||||
population_by_region = self._get_population_by_region(rb)
|
population_by_region = self._get_population_by_region(rb)
|
||||||
self.assertEquals(population_by_region, {0: 682, 1: 86})
|
self.assertEquals(population_by_region, {0: 682, 1: 86})
|
||||||
|
|
||||||
@ -821,6 +892,7 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
rb.set_dev_weight(3, 0.5)
|
rb.set_dev_weight(3, 0.5)
|
||||||
rb.pretend_min_part_hours_passed()
|
rb.pretend_min_part_hours_passed()
|
||||||
rb.rebalance(seed=2)
|
rb.rebalance(seed=2)
|
||||||
|
rb.validate()
|
||||||
population_by_region = self._get_population_by_region(rb)
|
population_by_region = self._get_population_by_region(rb)
|
||||||
self.assertEquals(population_by_region, {0: 614, 1: 154})
|
self.assertEquals(population_by_region, {0: 614, 1: 154})
|
||||||
|
|
||||||
@ -828,6 +900,7 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
rb.set_dev_weight(3, 1.0)
|
rb.set_dev_weight(3, 1.0)
|
||||||
rb.pretend_min_part_hours_passed()
|
rb.pretend_min_part_hours_passed()
|
||||||
rb.rebalance(seed=2)
|
rb.rebalance(seed=2)
|
||||||
|
rb.validate()
|
||||||
population_by_region = self._get_population_by_region(rb)
|
population_by_region = self._get_population_by_region(rb)
|
||||||
self.assertEquals(population_by_region, {0: 512, 1: 256})
|
self.assertEquals(population_by_region, {0: 512, 1: 256})
|
||||||
|
|
||||||
@ -848,6 +921,7 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
rb.set_dev_weight(5, weight)
|
rb.set_dev_weight(5, weight)
|
||||||
rb.pretend_min_part_hours_passed()
|
rb.pretend_min_part_hours_passed()
|
||||||
changed_parts, _balance = rb.rebalance(seed=2)
|
changed_parts, _balance = rb.rebalance(seed=2)
|
||||||
|
rb.validate()
|
||||||
moved_partitions.append(changed_parts)
|
moved_partitions.append(changed_parts)
|
||||||
# Ensure that the second region has enough partitions
|
# Ensure that the second region has enough partitions
|
||||||
# Otherwise there will be replicas at risk
|
# Otherwise there will be replicas at risk
|
||||||
@ -857,7 +931,7 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
|
|
||||||
# Number of partitions moved on each rebalance
|
# Number of partitions moved on each rebalance
|
||||||
# 10/510 * 768 ~ 15.06 -> move at least 15 partitions in first step
|
# 10/510 * 768 ~ 15.06 -> move at least 15 partitions in first step
|
||||||
ref = [0, 17, 16, 16, 14, 15, 13, 13, 12, 12, 14]
|
ref = [0, 17, 16, 17, 13, 15, 13, 12, 11, 13, 13]
|
||||||
self.assertEqual(ref, moved_partitions)
|
self.assertEqual(ref, moved_partitions)
|
||||||
|
|
||||||
def test_set_replicas_increase(self):
|
def test_set_replicas_increase(self):
|
||||||
@ -866,6 +940,8 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda1'})
|
||||||
rb.add_dev({'id': 1, 'region': 0, 'zone': 1, 'weight': 1,
|
rb.add_dev({'id': 1, 'region': 0, 'zone': 1, 'weight': 1,
|
||||||
'ip': '127.0.0.1', 'port': 10001, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 2, 'region': 0, 'zone': 2, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sda1'})
|
||||||
rb.rebalance()
|
rb.rebalance()
|
||||||
rb.validate()
|
rb.validate()
|
||||||
|
|
||||||
@ -888,6 +964,14 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda1'})
|
||||||
rb.add_dev({'id': 1, 'region': 0, 'zone': 1, 'weight': 1,
|
rb.add_dev({'id': 1, 'region': 0, 'zone': 1, 'weight': 1,
|
||||||
'ip': '127.0.0.1', 'port': 10001, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 2, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 3, 'region': 0, 'zone': 1, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 4, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 5, 'region': 0, 'zone': 1, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sda1'})
|
||||||
rb.rebalance()
|
rb.rebalance()
|
||||||
rb.validate()
|
rb.validate()
|
||||||
|
|
||||||
@ -912,6 +996,8 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda1'})
|
||||||
rb.add_dev({'id': 1, 'region': 0, 'region': 0, 'zone': 1, 'weight': 1,
|
rb.add_dev({'id': 1, 'region': 0, 'region': 0, 'zone': 1, 'weight': 1,
|
||||||
'ip': '127.0.0.1', 'port': 10001, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 2, 'region': 0, 'region': 0, 'zone': 2, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sda1'})
|
||||||
rb.rebalance() # passes by not crashing
|
rb.rebalance() # passes by not crashing
|
||||||
rb.validate() # also passes by not crashing
|
rb.validate() # also passes by not crashing
|
||||||
self.assertEqual([len(p2d) for p2d in rb._replica2part2dev],
|
self.assertEqual([len(p2d) for p2d in rb._replica2part2dev],
|
||||||
@ -921,6 +1007,12 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
rb = ring.RingBuilder(8, 3, 1)
|
rb = ring.RingBuilder(8, 3, 1)
|
||||||
rb.add_dev({'id': 0, 'region': 0, 'region': 0, 'zone': 0, 'weight': 3,
|
rb.add_dev({'id': 0, 'region': 0, 'region': 0, 'zone': 0, 'weight': 3,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda'})
|
||||||
|
rb.add_dev({'id': 1, 'region': 0, 'region': 0, 'zone': 0, 'weight': 3,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda'})
|
||||||
|
rb.add_dev({'id': 2, 'region': 0, 'region': 0, 'zone': 0, 'weight': 3,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda'})
|
||||||
|
rb.add_dev({'id': 3, 'region': 0, 'region': 0, 'zone': 0, 'weight': 3,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda'})
|
||||||
rb.set_replicas(4)
|
rb.set_replicas(4)
|
||||||
rb.rebalance() # this would crash since parts_wanted was not set
|
rb.rebalance() # this would crash since parts_wanted was not set
|
||||||
rb.validate()
|
rb.validate()
|
||||||
@ -1022,14 +1114,36 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
rb = ring.RingBuilder(8, 3, 1)
|
rb = ring.RingBuilder(8, 3, 1)
|
||||||
rb.add_dev({'id': 0, 'region': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
rb.add_dev({'id': 0, 'region': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda'})
|
||||||
|
rb.add_dev({'id': 3, 'region': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdd'})
|
||||||
|
rb.add_dev({'id': 4, 'region': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sde'})
|
||||||
|
rb.add_dev({'id': 5, 'region': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdf'})
|
||||||
|
|
||||||
rb.add_dev({'id': 1, 'region': 0, 'region': 0, 'zone': 1, 'weight': 1,
|
rb.add_dev({'id': 1, 'region': 0, 'region': 0, 'zone': 1, 'weight': 1,
|
||||||
'ip': '127.0.0.1', 'port': 10001, 'device': 'sdb'})
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sdb'})
|
||||||
|
rb.add_dev({'id': 6, 'region': 0, 'region': 0, 'zone': 1, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sdg'})
|
||||||
|
rb.add_dev({'id': 7, 'region': 0, 'region': 0, 'zone': 1, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sdh'})
|
||||||
|
rb.add_dev({'id': 8, 'region': 0, 'region': 0, 'zone': 1, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sdi'})
|
||||||
|
|
||||||
rb.add_dev({'id': 2, 'region': 0, 'region': 0, 'zone': 2, 'weight': 2,
|
rb.add_dev({'id': 2, 'region': 0, 'region': 0, 'zone': 2, 'weight': 2,
|
||||||
'ip': '127.0.0.2', 'port': 10002, 'device': 'sdc'})
|
'ip': '127.0.0.2', 'port': 10002, 'device': 'sdc'})
|
||||||
|
rb.add_dev({'id': 9, 'region': 0, 'region': 0, 'zone': 2, 'weight': 2,
|
||||||
|
'ip': '127.0.0.2', 'port': 10002, 'device': 'sdj'})
|
||||||
|
rb.add_dev({'id': 10, 'region': 0, 'region': 0, 'zone': 2, 'weight': 2,
|
||||||
|
'ip': '127.0.0.2', 'port': 10002, 'device': 'sdk'})
|
||||||
|
rb.add_dev({'id': 11, 'region': 0, 'region': 0, 'zone': 2, 'weight': 2,
|
||||||
|
'ip': '127.0.0.2', 'port': 10002, 'device': 'sdl'})
|
||||||
|
|
||||||
rb.rebalance(seed=12345)
|
rb.rebalance(seed=12345)
|
||||||
|
rb.validate()
|
||||||
|
|
||||||
# sanity check: balance respects weights, so default
|
# sanity check: balance respects weights, so default
|
||||||
part_counts = self._partition_counts(rb)
|
part_counts = self._partition_counts(rb, key='zone')
|
||||||
self.assertEqual(part_counts[0], 192)
|
self.assertEqual(part_counts[0], 192)
|
||||||
self.assertEqual(part_counts[1], 192)
|
self.assertEqual(part_counts[1], 192)
|
||||||
self.assertEqual(part_counts[2], 384)
|
self.assertEqual(part_counts[2], 384)
|
||||||
@ -1041,7 +1155,7 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
rb.pretend_min_part_hours_passed()
|
rb.pretend_min_part_hours_passed()
|
||||||
rb.rebalance(seed=12345)
|
rb.rebalance(seed=12345)
|
||||||
|
|
||||||
part_counts = self._partition_counts(rb)
|
part_counts = self._partition_counts(rb, key='zone')
|
||||||
self.assertEqual(part_counts[0], 212)
|
self.assertEqual(part_counts[0], 212)
|
||||||
self.assertEqual(part_counts[1], 212)
|
self.assertEqual(part_counts[1], 212)
|
||||||
self.assertEqual(part_counts[2], 344)
|
self.assertEqual(part_counts[2], 344)
|
||||||
@ -1053,7 +1167,7 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
rb.pretend_min_part_hours_passed()
|
rb.pretend_min_part_hours_passed()
|
||||||
rb.rebalance(seed=12345)
|
rb.rebalance(seed=12345)
|
||||||
|
|
||||||
part_counts = self._partition_counts(rb)
|
part_counts = self._partition_counts(rb, key='zone')
|
||||||
self.assertEqual(part_counts[0], 256)
|
self.assertEqual(part_counts[0], 256)
|
||||||
self.assertEqual(part_counts[1], 256)
|
self.assertEqual(part_counts[1], 256)
|
||||||
self.assertEqual(part_counts[2], 256)
|
self.assertEqual(part_counts[2], 256)
|
||||||
@ -1066,7 +1180,7 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
rb.pretend_min_part_hours_passed()
|
rb.pretend_min_part_hours_passed()
|
||||||
rb.rebalance(seed=12345)
|
rb.rebalance(seed=12345)
|
||||||
|
|
||||||
part_counts = self._partition_counts(rb)
|
part_counts = self._partition_counts(rb, key='zone')
|
||||||
self.assertEqual(part_counts[0], 256)
|
self.assertEqual(part_counts[0], 256)
|
||||||
self.assertEqual(part_counts[1], 256)
|
self.assertEqual(part_counts[1], 256)
|
||||||
self.assertEqual(part_counts[2], 256)
|
self.assertEqual(part_counts[2], 256)
|
||||||
@ -1079,51 +1193,76 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
rb.set_overload(0.125)
|
rb.set_overload(0.125)
|
||||||
rb.add_dev({'id': 0, 'region': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
rb.add_dev({'id': 0, 'region': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda'})
|
||||||
|
rb.add_dev({'id': 3, 'region': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda'})
|
||||||
|
rb.add_dev({'id': 4, 'region': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda'})
|
||||||
|
rb.add_dev({'id': 5, 'region': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda'})
|
||||||
|
|
||||||
rb.add_dev({'id': 1, 'region': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
rb.add_dev({'id': 1, 'region': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdb'})
|
'ip': '127.0.0.2', 'port': 10000, 'device': 'sdb'})
|
||||||
|
rb.add_dev({'id': 6, 'region': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
|
'ip': '127.0.0.2', 'port': 10000, 'device': 'sdb'})
|
||||||
|
rb.add_dev({'id': 7, 'region': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
|
'ip': '127.0.0.2', 'port': 10000, 'device': 'sdb'})
|
||||||
|
rb.add_dev({'id': 8, 'region': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
|
'ip': '127.0.0.2', 'port': 10000, 'device': 'sdb'})
|
||||||
|
|
||||||
rb.add_dev({'id': 2, 'region': 0, 'region': 0, 'zone': 0, 'weight': 2,
|
rb.add_dev({'id': 2, 'region': 0, 'region': 0, 'zone': 0, 'weight': 2,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdc'})
|
'ip': '127.0.0.3', 'port': 10000, 'device': 'sdc'})
|
||||||
|
rb.add_dev({'id': 9, 'region': 0, 'region': 0, 'zone': 0, 'weight': 2,
|
||||||
|
'ip': '127.0.0.3', 'port': 10000, 'device': 'sdc'})
|
||||||
|
rb.add_dev({'id': 10, 'region': 0, 'region': 0, 'zone': 0, 'weight': 2,
|
||||||
|
'ip': '127.0.0.3', 'port': 10000, 'device': 'sdc'})
|
||||||
|
rb.add_dev({'id': 11, 'region': 0, 'region': 0, 'zone': 0, 'weight': 2,
|
||||||
|
'ip': '127.0.0.3', 'port': 10000, 'device': 'sdc'})
|
||||||
rb.rebalance(seed=12345)
|
rb.rebalance(seed=12345)
|
||||||
|
|
||||||
# sanity check: our overload is big enough to balance things
|
# sanity check: our overload is big enough to balance things
|
||||||
part_counts = self._partition_counts(rb)
|
part_counts = self._partition_counts(rb, key='ip')
|
||||||
self.assertEqual(part_counts[0], 216)
|
self.assertEqual(part_counts['127.0.0.1'], 216)
|
||||||
self.assertEqual(part_counts[1], 216)
|
self.assertEqual(part_counts['127.0.0.2'], 216)
|
||||||
self.assertEqual(part_counts[2], 336)
|
self.assertEqual(part_counts['127.0.0.3'], 336)
|
||||||
|
|
||||||
# Add some weight: balance improves
|
# Add some weight: balance improves
|
||||||
rb.set_dev_weight(0, 1.5)
|
for dev in rb.devs:
|
||||||
rb.set_dev_weight(1, 1.5)
|
if dev['ip'] in ('127.0.0.1', '127.0.0.2'):
|
||||||
|
rb.set_dev_weight(dev['id'], 1.5)
|
||||||
rb.pretend_min_part_hours_passed()
|
rb.pretend_min_part_hours_passed()
|
||||||
rb.rebalance(seed=12345)
|
rb.rebalance(seed=12345)
|
||||||
|
|
||||||
part_counts = self._partition_counts(rb)
|
part_counts = self._partition_counts(rb, key='ip')
|
||||||
self.assertEqual(part_counts[0], 236)
|
self.assertEqual(part_counts['127.0.0.1'], 236)
|
||||||
self.assertEqual(part_counts[1], 236)
|
self.assertEqual(part_counts['127.0.0.2'], 236)
|
||||||
self.assertEqual(part_counts[2], 296)
|
self.assertEqual(part_counts['127.0.0.3'], 296)
|
||||||
|
|
||||||
# Even out the weights: balance becomes perfect
|
# Even out the weights: balance becomes perfect
|
||||||
rb.set_dev_weight(0, 2)
|
for dev in rb.devs:
|
||||||
rb.set_dev_weight(1, 2)
|
if dev['ip'] in ('127.0.0.1', '127.0.0.2'):
|
||||||
|
rb.set_dev_weight(dev['id'], 2)
|
||||||
|
|
||||||
rb.pretend_min_part_hours_passed()
|
rb.pretend_min_part_hours_passed()
|
||||||
rb.rebalance(seed=12345)
|
rb.rebalance(seed=12345)
|
||||||
|
|
||||||
part_counts = self._partition_counts(rb)
|
part_counts = self._partition_counts(rb, key='ip')
|
||||||
self.assertEqual(part_counts[0], 256)
|
self.assertEqual(part_counts['127.0.0.1'], 256)
|
||||||
self.assertEqual(part_counts[1], 256)
|
self.assertEqual(part_counts['127.0.0.2'], 256)
|
||||||
self.assertEqual(part_counts[2], 256)
|
self.assertEqual(part_counts['127.0.0.3'], 256)
|
||||||
|
|
||||||
# Add some new devices: balance stays optimal
|
# Add a new server: balance stays optimal
|
||||||
rb.add_dev({'id': 3, 'region': 0, 'region': 0, 'zone': 0,
|
rb.add_dev({'id': 12, 'region': 0, 'region': 0, 'zone': 0,
|
||||||
'weight': 2.0 / 3,
|
'weight': 2,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdd'})
|
'ip': '127.0.0.4', 'port': 10000, 'device': 'sdd'})
|
||||||
rb.add_dev({'id': 4, 'region': 0, 'region': 0, 'zone': 0,
|
rb.add_dev({'id': 13, 'region': 0, 'region': 0, 'zone': 0,
|
||||||
'weight': 2.0 / 3,
|
'weight': 2,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sde'})
|
'ip': '127.0.0.4', 'port': 10000, 'device': 'sde'})
|
||||||
rb.add_dev({'id': 5, 'region': 0, 'region': 0, 'zone': 0,
|
rb.add_dev({'id': 14, 'region': 0, 'region': 0, 'zone': 0,
|
||||||
'weight': 2.0 / 3,
|
'weight': 2,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdf'})
|
'ip': '127.0.0.4', 'port': 10000, 'device': 'sdf'})
|
||||||
|
rb.add_dev({'id': 15, 'region': 0, 'region': 0, 'zone': 0,
|
||||||
|
'weight': 2,
|
||||||
|
'ip': '127.0.0.4', 'port': 10000, 'device': 'sdf'})
|
||||||
|
|
||||||
# we're moving more than 1/3 of the replicas but fewer than 2/3, so
|
# we're moving more than 1/3 of the replicas but fewer than 2/3, so
|
||||||
# we have to do this twice
|
# we have to do this twice
|
||||||
@ -1132,13 +1271,11 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
rb.pretend_min_part_hours_passed()
|
rb.pretend_min_part_hours_passed()
|
||||||
rb.rebalance(seed=12345)
|
rb.rebalance(seed=12345)
|
||||||
|
|
||||||
part_counts = self._partition_counts(rb)
|
part_counts = self._partition_counts(rb, key='ip')
|
||||||
self.assertEqual(part_counts[0], 192)
|
self.assertEqual(part_counts['127.0.0.1'], 192)
|
||||||
self.assertEqual(part_counts[1], 192)
|
self.assertEqual(part_counts['127.0.0.2'], 192)
|
||||||
self.assertEqual(part_counts[2], 192)
|
self.assertEqual(part_counts['127.0.0.3'], 192)
|
||||||
self.assertEqual(part_counts[3], 64)
|
self.assertEqual(part_counts['127.0.0.4'], 192)
|
||||||
self.assertEqual(part_counts[4], 64)
|
|
||||||
self.assertEqual(part_counts[5], 64)
|
|
||||||
|
|
||||||
def test_overload_keeps_balanceable_things_balanced_initially(self):
|
def test_overload_keeps_balanceable_things_balanced_initially(self):
|
||||||
rb = ring.RingBuilder(8, 3, 1)
|
rb = ring.RingBuilder(8, 3, 1)
|
||||||
@ -1501,22 +1638,42 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
rb = ring.RingBuilder(8, 3, 1)
|
rb = ring.RingBuilder(8, 3, 1)
|
||||||
rb.add_dev({'id': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
rb.add_dev({'id': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 4, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 5, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 6, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda1'})
|
||||||
rb.add_dev({'id': 1, 'region': 0, 'zone': 1, 'weight': 1,
|
rb.add_dev({'id': 1, 'region': 0, 'zone': 1, 'weight': 1,
|
||||||
'ip': '127.0.0.1', 'port': 10001, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 7, 'region': 0, 'zone': 1, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 8, 'region': 0, 'zone': 1, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 9, 'region': 0, 'zone': 1, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sda1'})
|
||||||
rb.add_dev({'id': 2, 'region': 0, 'zone': 2, 'weight': 2,
|
rb.add_dev({'id': 2, 'region': 0, 'zone': 2, 'weight': 2,
|
||||||
'ip': '127.0.0.1', 'port': 10002, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10002, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 10, 'region': 0, 'zone': 2, 'weight': 2,
|
||||||
|
'ip': '127.0.0.1', 'port': 10002, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 11, 'region': 0, 'zone': 2, 'weight': 2,
|
||||||
|
'ip': '127.0.0.1', 'port': 10002, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 12, 'region': 0, 'zone': 2, 'weight': 2,
|
||||||
|
'ip': '127.0.0.1', 'port': 10002, 'device': 'sda1'})
|
||||||
rb.add_dev({'id': 3, 'region': 0, 'zone': 3, 'weight': 2,
|
rb.add_dev({'id': 3, 'region': 0, 'zone': 3, 'weight': 2,
|
||||||
'ip': '127.0.0.1', 'port': 10003, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10003, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 13, 'region': 0, 'zone': 3, 'weight': 2,
|
||||||
|
'ip': '127.0.0.1', 'port': 10003, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 14, 'region': 0, 'zone': 3, 'weight': 2,
|
||||||
|
'ip': '127.0.0.1', 'port': 10003, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 15, 'region': 0, 'zone': 3, 'weight': 2,
|
||||||
|
'ip': '127.0.0.1', 'port': 10003, 'device': 'sda1'})
|
||||||
|
|
||||||
# Degenerate case: devices added but not rebalanced yet
|
# Degenerate case: devices added but not rebalanced yet
|
||||||
self.assertRaises(exceptions.RingValidationError, rb.validate)
|
self.assertRaises(exceptions.RingValidationError, rb.validate)
|
||||||
|
|
||||||
rb.rebalance()
|
rb.rebalance()
|
||||||
r = rb.get_ring()
|
counts = self._partition_counts(rb, key='zone')
|
||||||
counts = {}
|
|
||||||
for part2dev_id in r._replica2part2dev_id:
|
|
||||||
for dev_id in part2dev_id:
|
|
||||||
counts[dev_id] = counts.get(dev_id, 0) + 1
|
|
||||||
self.assertEquals(counts, {0: 128, 1: 128, 2: 256, 3: 256})
|
self.assertEquals(counts, {0: 128, 1: 128, 2: 256, 3: 256})
|
||||||
|
|
||||||
dev_usage, worst = rb.validate()
|
dev_usage, worst = rb.validate()
|
||||||
@ -1524,7 +1681,12 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
self.assertTrue(worst is None)
|
self.assertTrue(worst is None)
|
||||||
|
|
||||||
dev_usage, worst = rb.validate(stats=True)
|
dev_usage, worst = rb.validate(stats=True)
|
||||||
self.assertEquals(list(dev_usage), [128, 128, 256, 256])
|
self.assertEquals(list(dev_usage), [32, 32, 64, 64,
|
||||||
|
32, 32, 32, # added zone0
|
||||||
|
32, 32, 32, # added zone1
|
||||||
|
64, 64, 64, # added zone2
|
||||||
|
64, 64, 64, # added zone3
|
||||||
|
])
|
||||||
self.assertEquals(int(worst), 0)
|
self.assertEquals(int(worst), 0)
|
||||||
|
|
||||||
rb.set_dev_weight(2, 0)
|
rb.set_dev_weight(2, 0)
|
||||||
@ -1566,12 +1728,70 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
# Validate that zero weight devices with no partitions don't count on
|
# Validate that zero weight devices with no partitions don't count on
|
||||||
# the 'worst' value.
|
# the 'worst' value.
|
||||||
self.assertNotEquals(rb.validate(stats=True)[1], MAX_BALANCE)
|
self.assertNotEquals(rb.validate(stats=True)[1], MAX_BALANCE)
|
||||||
rb.add_dev({'id': 4, 'region': 0, 'zone': 0, 'weight': 0,
|
rb.add_dev({'id': 16, 'region': 0, 'zone': 0, 'weight': 0,
|
||||||
'ip': '127.0.0.1', 'port': 10004, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10004, 'device': 'sda1'})
|
||||||
rb.pretend_min_part_hours_passed()
|
rb.pretend_min_part_hours_passed()
|
||||||
rb.rebalance()
|
rb.rebalance()
|
||||||
self.assertNotEquals(rb.validate(stats=True)[1], MAX_BALANCE)
|
self.assertNotEquals(rb.validate(stats=True)[1], MAX_BALANCE)
|
||||||
|
|
||||||
|
def test_validate_partial_replica(self):
|
||||||
|
rb = ring.RingBuilder(8, 2.5, 1)
|
||||||
|
rb.add_dev({'id': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda'})
|
||||||
|
rb.add_dev({'id': 1, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sdb'})
|
||||||
|
rb.add_dev({'id': 2, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sdc'})
|
||||||
|
rb.rebalance()
|
||||||
|
rb.validate() # sanity
|
||||||
|
self.assertEqual(len(rb._replica2part2dev[0]), 256)
|
||||||
|
self.assertEqual(len(rb._replica2part2dev[1]), 256)
|
||||||
|
self.assertEqual(len(rb._replica2part2dev[2]), 128)
|
||||||
|
|
||||||
|
# now swap partial replica part maps
|
||||||
|
rb._replica2part2dev[1], rb._replica2part2dev[2] = \
|
||||||
|
rb._replica2part2dev[2], rb._replica2part2dev[1]
|
||||||
|
self.assertRaises(exceptions.RingValidationError, rb.validate)
|
||||||
|
|
||||||
|
def test_validate_duplicate_part_assignment(self):
|
||||||
|
rb = ring.RingBuilder(8, 3, 1)
|
||||||
|
rb.add_dev({'id': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda'})
|
||||||
|
rb.add_dev({'id': 1, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sdb'})
|
||||||
|
rb.add_dev({'id': 2, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sdc'})
|
||||||
|
rb.rebalance()
|
||||||
|
rb.validate() # sanity
|
||||||
|
# now double up a device assignment
|
||||||
|
rb._replica2part2dev[1][200] = rb._replica2part2dev[2][200]
|
||||||
|
|
||||||
|
class SubStringMatcher(object):
|
||||||
|
def __init__(self, substr):
|
||||||
|
self.substr = substr
|
||||||
|
|
||||||
|
def __eq__(self, other):
|
||||||
|
return self.substr in other
|
||||||
|
|
||||||
|
with warnings.catch_warnings():
|
||||||
|
# we're firing the warning twice in this test and resetwarnings
|
||||||
|
# doesn't work - https://bugs.python.org/issue4180
|
||||||
|
warnings.simplefilter('always')
|
||||||
|
|
||||||
|
# by default things will work, but log a warning
|
||||||
|
with mock.patch('sys.stderr') as mock_stderr:
|
||||||
|
rb.validate()
|
||||||
|
expected = SubStringMatcher(
|
||||||
|
'RingValidationWarning: The partition 200 has been assigned '
|
||||||
|
'to duplicate devices')
|
||||||
|
# ... but the warning is written to stderr
|
||||||
|
self.assertEqual(mock_stderr.method_calls,
|
||||||
|
[mock.call.write(expected)])
|
||||||
|
# if you make warnings errors it blows up
|
||||||
|
with warnings.catch_warnings():
|
||||||
|
warnings.filterwarnings('error')
|
||||||
|
self.assertRaises(RingValidationWarning, rb.validate)
|
||||||
|
|
||||||
def test_get_part_devices(self):
|
def test_get_part_devices(self):
|
||||||
rb = ring.RingBuilder(8, 3, 1)
|
rb = ring.RingBuilder(8, 3, 1)
|
||||||
self.assertEqual(rb.get_part_devices(0), [])
|
self.assertEqual(rb.get_part_devices(0), [])
|
||||||
@ -1580,11 +1800,13 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda1'})
|
||||||
rb.add_dev({'id': 1, 'region': 0, 'zone': 1, 'weight': 1,
|
rb.add_dev({'id': 1, 'region': 0, 'zone': 1, 'weight': 1,
|
||||||
'ip': '127.0.0.1', 'port': 10001, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 2, 'region': 0, 'zone': 2, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sda1'})
|
||||||
rb.rebalance()
|
rb.rebalance()
|
||||||
|
|
||||||
part_devs = sorted(rb.get_part_devices(0),
|
part_devs = sorted(rb.get_part_devices(0),
|
||||||
key=operator.itemgetter('id'))
|
key=operator.itemgetter('id'))
|
||||||
self.assertEqual(part_devs, [rb.devs[0], rb.devs[1]])
|
self.assertEqual(part_devs, [rb.devs[0], rb.devs[1], rb.devs[2]])
|
||||||
|
|
||||||
def test_get_part_devices_partial_replicas(self):
|
def test_get_part_devices_partial_replicas(self):
|
||||||
rb = ring.RingBuilder(8, 2.5, 1)
|
rb = ring.RingBuilder(8, 2.5, 1)
|
||||||
@ -1592,7 +1814,9 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda1'})
|
||||||
rb.add_dev({'id': 1, 'region': 0, 'zone': 1, 'weight': 1,
|
rb.add_dev({'id': 1, 'region': 0, 'zone': 1, 'weight': 1,
|
||||||
'ip': '127.0.0.1', 'port': 10001, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sda1'})
|
||||||
rb.rebalance()
|
rb.add_dev({'id': 2, 'region': 0, 'zone': 2, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sda1'})
|
||||||
|
rb.rebalance(seed=9)
|
||||||
|
|
||||||
# note: partition 255 will only have 2 replicas
|
# note: partition 255 will only have 2 replicas
|
||||||
part_devs = sorted(rb.get_part_devices(255),
|
part_devs = sorted(rb.get_part_devices(255),
|
||||||
@ -1606,52 +1830,60 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda'})
|
||||||
rb.add_dev({'id': 1, 'region': 0, 'zone': 0, 'weight': 1,
|
rb.add_dev({'id': 1, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdb'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdb'})
|
||||||
# and a zero weight device
|
rb.add_dev({'id': 2, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
rb.add_dev({'id': 2, 'region': 0, 'zone': 0, 'weight': 0,
|
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdc'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdc'})
|
||||||
|
# and a zero weight device
|
||||||
|
rb.add_dev({'id': 3, 'region': 0, 'zone': 0, 'weight': 0,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdd'})
|
||||||
rb.rebalance()
|
rb.rebalance()
|
||||||
self.assertEqual(rb.dispersion, 0.0)
|
self.assertEqual(rb.dispersion, 0.0)
|
||||||
self.assertEqual(rb._dispersion_graph, {
|
self.assertEqual(rb._dispersion_graph, {
|
||||||
(0,): [0, 0, 0, 256],
|
(0,): [0, 0, 0, 256],
|
||||||
(0, 0): [0, 0, 0, 256],
|
(0, 0): [0, 0, 0, 256],
|
||||||
(0, 0, '127.0.0.1'): [0, 0, 0, 256],
|
(0, 0, '127.0.0.1'): [0, 0, 0, 256],
|
||||||
(0, 0, '127.0.0.1', 0): [0, 128, 128, 0],
|
(0, 0, '127.0.0.1', 0): [0, 256, 0, 0],
|
||||||
(0, 0, '127.0.0.1', 1): [0, 128, 128, 0],
|
(0, 0, '127.0.0.1', 1): [0, 256, 0, 0],
|
||||||
|
(0, 0, '127.0.0.1', 2): [0, 256, 0, 0],
|
||||||
})
|
})
|
||||||
|
|
||||||
def test_dispersion_with_zero_weight_devices_with_parts(self):
|
def test_dispersion_with_zero_weight_devices_with_parts(self):
|
||||||
rb = ring.RingBuilder(8, 3.0, 1)
|
rb = ring.RingBuilder(8, 3.0, 1)
|
||||||
# add three devices to a single server in a single zone
|
# add four devices to a single server in a single zone
|
||||||
rb.add_dev({'id': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
rb.add_dev({'id': 0, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda'})
|
||||||
rb.add_dev({'id': 1, 'region': 0, 'zone': 0, 'weight': 1,
|
rb.add_dev({'id': 1, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdb'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdb'})
|
||||||
rb.add_dev({'id': 2, 'region': 0, 'zone': 0, 'weight': 1,
|
rb.add_dev({'id': 2, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdc'})
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdc'})
|
||||||
|
rb.add_dev({'id': 3, 'region': 0, 'zone': 0, 'weight': 1,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdd'})
|
||||||
rb.rebalance(seed=1)
|
rb.rebalance(seed=1)
|
||||||
self.assertEqual(rb.dispersion, 0.0)
|
self.assertEqual(rb.dispersion, 0.0)
|
||||||
self.assertEqual(rb._dispersion_graph, {
|
self.assertEqual(rb._dispersion_graph, {
|
||||||
(0,): [0, 0, 0, 256],
|
(0,): [0, 0, 0, 256],
|
||||||
(0, 0): [0, 0, 0, 256],
|
(0, 0): [0, 0, 0, 256],
|
||||||
(0, 0, '127.0.0.1'): [0, 0, 0, 256],
|
(0, 0, '127.0.0.1'): [0, 0, 0, 256],
|
||||||
(0, 0, '127.0.0.1', 0): [0, 256, 0, 0],
|
(0, 0, '127.0.0.1', 0): [64, 192, 0, 0],
|
||||||
(0, 0, '127.0.0.1', 1): [0, 256, 0, 0],
|
(0, 0, '127.0.0.1', 1): [64, 192, 0, 0],
|
||||||
(0, 0, '127.0.0.1', 2): [0, 256, 0, 0],
|
(0, 0, '127.0.0.1', 2): [64, 192, 0, 0],
|
||||||
|
(0, 0, '127.0.0.1', 3): [64, 192, 0, 0],
|
||||||
})
|
})
|
||||||
# now mark a device 2 for decom
|
# now mark a device 2 for decom
|
||||||
rb.set_dev_weight(2, 0.0)
|
rb.set_dev_weight(2, 0.0)
|
||||||
# we'll rebalance but can't move any parts
|
# we'll rebalance but can't move any parts
|
||||||
rb.rebalance(seed=1)
|
rb.rebalance(seed=1)
|
||||||
# zero weight tier has one copy of *every* part
|
# zero weight tier has one copy of 1/4 part-replica
|
||||||
self.assertEqual(rb.dispersion, 100.0)
|
self.assertEqual(rb.dispersion, 75.0)
|
||||||
self.assertEqual(rb._dispersion_graph, {
|
self.assertEqual(rb._dispersion_graph, {
|
||||||
(0,): [0, 0, 0, 256],
|
(0,): [0, 0, 0, 256],
|
||||||
(0, 0): [0, 0, 0, 256],
|
(0, 0): [0, 0, 0, 256],
|
||||||
(0, 0, '127.0.0.1'): [0, 0, 0, 256],
|
(0, 0, '127.0.0.1'): [0, 0, 0, 256],
|
||||||
(0, 0, '127.0.0.1', 0): [0, 256, 0, 0],
|
(0, 0, '127.0.0.1', 0): [64, 192, 0, 0],
|
||||||
(0, 0, '127.0.0.1', 1): [0, 256, 0, 0],
|
(0, 0, '127.0.0.1', 1): [64, 192, 0, 0],
|
||||||
(0, 0, '127.0.0.1', 2): [0, 256, 0, 0],
|
(0, 0, '127.0.0.1', 2): [64, 192, 0, 0],
|
||||||
|
(0, 0, '127.0.0.1', 3): [64, 192, 0, 0],
|
||||||
})
|
})
|
||||||
|
# unlock the stuck parts
|
||||||
rb.pretend_min_part_hours_passed()
|
rb.pretend_min_part_hours_passed()
|
||||||
rb.rebalance(seed=3)
|
rb.rebalance(seed=3)
|
||||||
self.assertEqual(rb.dispersion, 0.0)
|
self.assertEqual(rb.dispersion, 0.0)
|
||||||
@ -1659,10 +1891,115 @@ class TestRingBuilder(unittest.TestCase):
|
|||||||
(0,): [0, 0, 0, 256],
|
(0,): [0, 0, 0, 256],
|
||||||
(0, 0): [0, 0, 0, 256],
|
(0, 0): [0, 0, 0, 256],
|
||||||
(0, 0, '127.0.0.1'): [0, 0, 0, 256],
|
(0, 0, '127.0.0.1'): [0, 0, 0, 256],
|
||||||
(0, 0, '127.0.0.1', 0): [0, 128, 128, 0],
|
(0, 0, '127.0.0.1', 0): [0, 256, 0, 0],
|
||||||
(0, 0, '127.0.0.1', 1): [0, 128, 128, 0],
|
(0, 0, '127.0.0.1', 1): [0, 256, 0, 0],
|
||||||
|
(0, 0, '127.0.0.1', 3): [0, 256, 0, 0],
|
||||||
})
|
})
|
||||||
|
|
||||||
|
def test_effective_overload(self):
|
||||||
|
rb = ring.RingBuilder(8, 3, 1)
|
||||||
|
# z0
|
||||||
|
rb.add_dev({'id': 0, 'region': 0, 'zone': 0, 'weight': 100,
|
||||||
|
'ip': '127.0.0.0', 'port': 10000, 'device': 'sda'})
|
||||||
|
rb.add_dev({'id': 1, 'region': 0, 'zone': 0, 'weight': 100,
|
||||||
|
'ip': '127.0.0.0', 'port': 10000, 'device': 'sdb'})
|
||||||
|
rb.add_dev({'id': 2, 'region': 0, 'zone': 0, 'weight': 100,
|
||||||
|
'ip': '127.0.0.0', 'port': 10000, 'device': 'sdb'})
|
||||||
|
# z1
|
||||||
|
rb.add_dev({'id': 3, 'region': 0, 'zone': 1, 'weight': 100,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda'})
|
||||||
|
rb.add_dev({'id': 4, 'region': 0, 'zone': 1, 'weight': 100,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdb'})
|
||||||
|
rb.add_dev({'id': 5, 'region': 0, 'zone': 1, 'weight': 100,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sdc'})
|
||||||
|
# z2
|
||||||
|
rb.add_dev({'id': 6, 'region': 0, 'zone': 2, 'weight': 100,
|
||||||
|
'ip': '127.0.0.2', 'port': 10000, 'device': 'sda'})
|
||||||
|
rb.add_dev({'id': 7, 'region': 0, 'zone': 2, 'weight': 100,
|
||||||
|
'ip': '127.0.0.2', 'port': 10000, 'device': 'sdb'})
|
||||||
|
|
||||||
|
# this ring requires overload
|
||||||
|
required = rb.get_required_overload()
|
||||||
|
self.assertGreater(required, 0.1)
|
||||||
|
|
||||||
|
# and we'll use a little bit
|
||||||
|
rb.set_overload(0.1)
|
||||||
|
|
||||||
|
rb.rebalance(seed=7)
|
||||||
|
rb.validate()
|
||||||
|
|
||||||
|
# but with-out enough overload we're not dispersed
|
||||||
|
self.assertGreater(rb.dispersion, 0)
|
||||||
|
|
||||||
|
# add the other dev to z2
|
||||||
|
rb.add_dev({'id': 8, 'region': 0, 'zone': 2, 'weight': 100,
|
||||||
|
'ip': '127.0.0.2', 'port': 10000, 'device': 'sdc'})
|
||||||
|
# but also fail another device in the same!
|
||||||
|
rb.remove_dev(6)
|
||||||
|
|
||||||
|
# we still require overload
|
||||||
|
required = rb.get_required_overload()
|
||||||
|
self.assertGreater(required, 0.1)
|
||||||
|
|
||||||
|
rb.pretend_min_part_hours_passed()
|
||||||
|
rb.rebalance(seed=7)
|
||||||
|
rb.validate()
|
||||||
|
|
||||||
|
# ... and without enough we're full dispersed
|
||||||
|
self.assertGreater(rb.dispersion, 0)
|
||||||
|
|
||||||
|
# ok, let's fix z2's weight for real
|
||||||
|
rb.add_dev({'id': 6, 'region': 0, 'zone': 2, 'weight': 100,
|
||||||
|
'ip': '127.0.0.2', 'port': 10000, 'device': 'sda'})
|
||||||
|
|
||||||
|
# ... technically, we no longer require overload
|
||||||
|
self.assertEqual(rb.get_required_overload(), 0.0)
|
||||||
|
|
||||||
|
# so let's rebalance w/o resetting min_part_hours
|
||||||
|
rb.rebalance(seed=7)
|
||||||
|
rb.validate()
|
||||||
|
|
||||||
|
# ok, we didn't quite disperse
|
||||||
|
self.assertGreater(rb.dispersion, 0)
|
||||||
|
|
||||||
|
# ... but let's unlock some parts
|
||||||
|
rb.pretend_min_part_hours_passed()
|
||||||
|
rb.rebalance(seed=7)
|
||||||
|
rb.validate()
|
||||||
|
|
||||||
|
# ... and that got it!
|
||||||
|
self.assertEqual(rb.dispersion, 0)
|
||||||
|
|
||||||
|
def strawman_test(self):
|
||||||
|
"""
|
||||||
|
This test demonstrates a trivial failure of part-replica placement.
|
||||||
|
|
||||||
|
If you turn warnings into errors this will fail.
|
||||||
|
|
||||||
|
i.e.
|
||||||
|
|
||||||
|
export PYTHONWARNINGS=error:::swift.common.ring.builder
|
||||||
|
|
||||||
|
N.B. try not to get *too* hung up on doing something silly to make
|
||||||
|
this particular case pass w/o warnings - it's trivial to write up a
|
||||||
|
dozen more.
|
||||||
|
"""
|
||||||
|
rb = ring.RingBuilder(8, 3, 1)
|
||||||
|
# z0
|
||||||
|
rb.add_dev({'id': 0, 'region': 0, 'zone': 0, 'weight': 100,
|
||||||
|
'ip': '127.0.0.0', 'port': 10000, 'device': 'sda'})
|
||||||
|
# z1
|
||||||
|
rb.add_dev({'id': 1, 'region': 0, 'zone': 1, 'weight': 100,
|
||||||
|
'ip': '127.0.0.1', 'port': 10000, 'device': 'sda'})
|
||||||
|
# z2
|
||||||
|
rb.add_dev({'id': 2, 'region': 0, 'zone': 2, 'weight': 200,
|
||||||
|
'ip': '127.0.0.2', 'port': 10000, 'device': 'sda'})
|
||||||
|
|
||||||
|
with warnings.catch_warnings(record=True) as w:
|
||||||
|
rb.rebalance(seed=7)
|
||||||
|
rb.validate()
|
||||||
|
self.assertEqual(len(w), 65)
|
||||||
|
|
||||||
|
|
||||||
class TestGetRequiredOverload(unittest.TestCase):
|
class TestGetRequiredOverload(unittest.TestCase):
|
||||||
def assertApproximately(self, a, b, error=1e-6):
|
def assertApproximately(self, a, b, error=1e-6):
|
||||||
|
@ -644,16 +644,40 @@ class TestUtils(unittest.TestCase):
|
|||||||
rb = ring.RingBuilder(8, 3, 0)
|
rb = ring.RingBuilder(8, 3, 0)
|
||||||
rb.add_dev({'id': 0, 'region': 1, 'zone': 0, 'weight': 100,
|
rb.add_dev({'id': 0, 'region': 1, 'zone': 0, 'weight': 100,
|
||||||
'ip': '127.0.0.0', 'port': 10000, 'device': 'sda1'})
|
'ip': '127.0.0.0', 'port': 10000, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 3, 'region': 1, 'zone': 0, 'weight': 100,
|
||||||
|
'ip': '127.0.0.0', 'port': 10000, 'device': 'sdb1'})
|
||||||
|
rb.add_dev({'id': 4, 'region': 1, 'zone': 0, 'weight': 100,
|
||||||
|
'ip': '127.0.0.0', 'port': 10000, 'device': 'sdc1'})
|
||||||
|
rb.add_dev({'id': 5, 'region': 1, 'zone': 0, 'weight': 100,
|
||||||
|
'ip': '127.0.0.0', 'port': 10000, 'device': 'sdd1'})
|
||||||
|
|
||||||
rb.add_dev({'id': 1, 'region': 1, 'zone': 1, 'weight': 200,
|
rb.add_dev({'id': 1, 'region': 1, 'zone': 1, 'weight': 200,
|
||||||
'ip': '127.0.0.1', 'port': 10001, 'device': 'sda1'})
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 6, 'region': 1, 'zone': 1, 'weight': 200,
|
||||||
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sdb1'})
|
||||||
|
rb.add_dev({'id': 7, 'region': 1, 'zone': 1, 'weight': 200,
|
||||||
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sdc1'})
|
||||||
|
rb.add_dev({'id': 8, 'region': 1, 'zone': 1, 'weight': 200,
|
||||||
|
'ip': '127.0.0.1', 'port': 10001, 'device': 'sdd1'})
|
||||||
|
|
||||||
rb.add_dev({'id': 2, 'region': 1, 'zone': 1, 'weight': 200,
|
rb.add_dev({'id': 2, 'region': 1, 'zone': 1, 'weight': 200,
|
||||||
'ip': '127.0.0.2', 'port': 10002, 'device': 'sda1'})
|
'ip': '127.0.0.2', 'port': 10002, 'device': 'sda1'})
|
||||||
rb.rebalance(seed=10)
|
rb.add_dev({'id': 9, 'region': 1, 'zone': 1, 'weight': 200,
|
||||||
|
'ip': '127.0.0.2', 'port': 10002, 'device': 'sdb1'})
|
||||||
|
rb.add_dev({'id': 10, 'region': 1, 'zone': 1, 'weight': 200,
|
||||||
|
'ip': '127.0.0.2', 'port': 10002, 'device': 'sdc1'})
|
||||||
|
rb.add_dev({'id': 11, 'region': 1, 'zone': 1, 'weight': 200,
|
||||||
|
'ip': '127.0.0.2', 'port': 10002, 'device': 'sdd1'})
|
||||||
|
|
||||||
self.assertEqual(rb.dispersion, 39.84375)
|
# this ring is pretty volatile and the assertions are pretty brittle
|
||||||
|
# so we use a specific seed
|
||||||
|
rb.rebalance(seed=100)
|
||||||
|
rb.validate()
|
||||||
|
|
||||||
|
self.assertEqual(rb.dispersion, 39.0625)
|
||||||
report = dispersion_report(rb)
|
report = dispersion_report(rb)
|
||||||
self.assertEqual(report['worst_tier'], 'r1z1')
|
self.assertEqual(report['worst_tier'], 'r1z1')
|
||||||
self.assertEqual(report['max_dispersion'], 39.84375)
|
self.assertEqual(report['max_dispersion'], 39.0625)
|
||||||
|
|
||||||
def build_tier_report(max_replicas, placed_parts, dispersion,
|
def build_tier_report(max_replicas, placed_parts, dispersion,
|
||||||
replicas):
|
replicas):
|
||||||
@ -669,31 +693,36 @@ class TestUtils(unittest.TestCase):
|
|||||||
# zone 1 are stored at least twice on the nodes
|
# zone 1 are stored at least twice on the nodes
|
||||||
expected = [
|
expected = [
|
||||||
['r1z1', build_tier_report(
|
['r1z1', build_tier_report(
|
||||||
2, 256, 39.84375, [0, 0, 154, 102])],
|
2, 256, 39.0625, [0, 0, 156, 100])],
|
||||||
['r1z1-127.0.0.1', build_tier_report(
|
['r1z1-127.0.0.1', build_tier_report(
|
||||||
1, 256, 19.921875, [0, 205, 51, 0])],
|
1, 256, 19.53125, [0, 206, 50, 0])],
|
||||||
['r1z1-127.0.0.1/sda1', build_tier_report(
|
|
||||||
1, 256, 19.921875, [0, 205, 51, 0])],
|
|
||||||
['r1z1-127.0.0.2', build_tier_report(
|
['r1z1-127.0.0.2', build_tier_report(
|
||||||
1, 256, 19.921875, [0, 205, 51, 0])],
|
1, 256, 19.53125, [0, 206, 50, 0])],
|
||||||
['r1z1-127.0.0.2/sda1', build_tier_report(
|
|
||||||
1, 256, 19.921875, [0, 205, 51, 0])],
|
|
||||||
]
|
]
|
||||||
report = dispersion_report(rb, 'r1z1.*', verbose=True)
|
report = dispersion_report(rb, 'r1z1[^/]*$', verbose=True)
|
||||||
graph = report['graph']
|
graph = report['graph']
|
||||||
for i in range(len(expected)):
|
for i, (expected_key, expected_report) in enumerate(expected):
|
||||||
self.assertEqual(expected[i][0], graph[i][0])
|
key, report = graph[i]
|
||||||
self.assertEqual(expected[i][1], graph[i][1])
|
self.assertEqual(
|
||||||
|
(key, report),
|
||||||
|
(expected_key, expected_report)
|
||||||
|
)
|
||||||
|
|
||||||
# overcompensate in r1z0
|
# overcompensate in r1z0
|
||||||
rb.add_dev({'id': 3, 'region': 1, 'zone': 0, 'weight': 500,
|
rb.add_dev({'id': 12, 'region': 1, 'zone': 0, 'weight': 500,
|
||||||
'ip': '127.0.0.1', 'port': 10003, 'device': 'sda1'})
|
'ip': '127.0.0.3', 'port': 10003, 'device': 'sda1'})
|
||||||
|
rb.add_dev({'id': 13, 'region': 1, 'zone': 0, 'weight': 500,
|
||||||
|
'ip': '127.0.0.3', 'port': 10003, 'device': 'sdb1'})
|
||||||
|
rb.add_dev({'id': 14, 'region': 1, 'zone': 0, 'weight': 500,
|
||||||
|
'ip': '127.0.0.3', 'port': 10003, 'device': 'sdc1'})
|
||||||
|
rb.add_dev({'id': 15, 'region': 1, 'zone': 0, 'weight': 500,
|
||||||
|
'ip': '127.0.0.3', 'port': 10003, 'device': 'sdd1'})
|
||||||
rb.rebalance(seed=10)
|
rb.rebalance(seed=10)
|
||||||
|
|
||||||
report = dispersion_report(rb)
|
report = dispersion_report(rb)
|
||||||
self.assertEqual(rb.dispersion, 40.234375)
|
self.assertEqual(rb.dispersion, 44.53125)
|
||||||
self.assertEqual(report['worst_tier'], 'r1z0-127.0.0.1')
|
self.assertEqual(report['worst_tier'], 'r1z0-127.0.0.3')
|
||||||
self.assertEqual(report['max_dispersion'], 30.078125)
|
self.assertEqual(report['max_dispersion'], 32.520325203252035)
|
||||||
|
|
||||||
def test_parse_address_old_format(self):
|
def test_parse_address_old_format(self):
|
||||||
# Test old format
|
# Test old format
|
||||||
|
Loading…
Reference in New Issue
Block a user