213f385348
Before, a really lagged cluster might not get its final report for a deleted container database sent to its corresponding account database. In such a case, the container database file would be permanently deleted while still leaving the container listed in the account database, never to be updated since the actual container database file was gone. The only way to fix such the situation before was to recreate and redelete the container. Now, the container database file will not be permanently deleted until it has sent its final report successfully to its corresponding account database. Change-Id: I1f42202455e7ecb0533b84ce7f45fcc7b98aeaa3
61 lines
2.3 KiB
Python
61 lines
2.3 KiB
Python
# Copyright (c) 2010-2012 OpenStack, LLC.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
# implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
import unittest
|
|
from swift.container import replicator
|
|
from swift.common.utils import normalize_timestamp
|
|
|
|
|
|
class TestReplicator(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
self.orig_ring = replicator.db_replicator.ring.Ring
|
|
replicator.db_replicator.ring.Ring = lambda *args, **kwargs: None
|
|
|
|
def tearDown(self):
|
|
replicator.db_replicator.ring.Ring = self.orig_ring
|
|
|
|
def test_report_up_to_date(self):
|
|
repl = replicator.ContainerReplicator({})
|
|
info = {'put_timestamp': normalize_timestamp(1),
|
|
'delete_timestamp': normalize_timestamp(0),
|
|
'object_count': 0,
|
|
'bytes_used': 0,
|
|
'reported_put_timestamp': normalize_timestamp(1),
|
|
'reported_delete_timestamp': normalize_timestamp(0),
|
|
'reported_object_count': 0,
|
|
'reported_bytes_used': 0}
|
|
self.assertTrue(repl.report_up_to_date(info))
|
|
info['delete_timestamp'] = normalize_timestamp(2)
|
|
self.assertFalse(repl.report_up_to_date(info))
|
|
info['reported_delete_timestamp'] = normalize_timestamp(2)
|
|
self.assertTrue(repl.report_up_to_date(info))
|
|
info['object_count'] = 1
|
|
self.assertFalse(repl.report_up_to_date(info))
|
|
info['reported_object_count'] = 1
|
|
self.assertTrue(repl.report_up_to_date(info))
|
|
info['bytes_used'] = 1
|
|
self.assertFalse(repl.report_up_to_date(info))
|
|
info['reported_bytes_used'] = 1
|
|
self.assertTrue(repl.report_up_to_date(info))
|
|
info['put_timestamp'] = normalize_timestamp(3)
|
|
self.assertFalse(repl.report_up_to_date(info))
|
|
info['reported_put_timestamp'] = normalize_timestamp(3)
|
|
self.assertTrue(repl.report_up_to_date(info))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|