
Refactor code to use the devices configuration file setting for account, container, and object servers, dropping mount_path from the fs.conf file, and constructing new account, container and object server rings. This removes the next to last set of diffs in the swift diff file. See BZ 870589 (https://bugzilla.redhat.com/show_bug.cgi?id=870589). The key to the change is the dropping of the pre-built account, container and object rings, instead providing a script that will generate them for the user given the gluster volume name in use. In addition, we override the Swift check_mount() method and replace it with Gluster's which attempts to "auto-mount" if it is not already mounted. The following is an enumeration of the changes contained in this refactoring: * The refactoring to override the Swift check_mount() involved condensing a lot of code, removing redundancies and simplifying methods across a number of modules * Drop checking the mount point in the low level DiskDir, DiskAccount and DiskFile objects now that Swift's normal mount checking is used, and enable it by default in the template configuration file * Add missing get_container_timestamp() method for DiskAccount objects * Fix the plugin RPM spec file to provide the new ring builders, and while we were at it, finally fix the over-writing of the configuration files on install * Bug fixes * The monkey patched version of check_object_creation was not working correctly due to a missing import of HTTPBadRequest and a bad reference to validate_obj_name_component() * Only have the utils module import the plugins constraints module for the side effect of monkey patching if gluster is enabled * Removed the db_file.db file in the tree since it is created on the fly * Updated 2011 copyright notices to 2012 Change-Id: I8f4454576b1423021c9bbf3c36176f8db51e62c0 BUG: 870589 Signed-off-by: Peter Portante <peter.portante@redhat.com> Reviewed-on: http://review.gluster.org/4179 Reviewed-by: Pete Zaitcev <zaitcev@redhat.com> Reviewed-by: Kaleb KEITHLEY <kkeithle@redhat.com> Tested-by: Kaleb KEITHLEY <kkeithle@redhat.com> Reviewed-by: Mohammed Junaid <junaid@redhat.com>
175 lines
8.2 KiB
Diff
175 lines
8.2 KiB
Diff
diff --git a/setup.py b/setup.py
|
|
index d195d34..ef625ff 100644
|
|
--- a/setup.py
|
|
+++ b/setup.py
|
|
@@ -1,5 +1,6 @@
|
|
#!/usr/bin/python
|
|
# Copyright (c) 2010-2012 OpenStack, LLC.
|
|
+# Copyright (c) 2012 Red Hat, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
@@ -94,6 +95,7 @@ setup(
|
|
'tempurl=swift.common.middleware.tempurl:filter_factory',
|
|
'formpost=swift.common.middleware.formpost:filter_factory',
|
|
'name_check=swift.common.middleware.name_check:filter_factory',
|
|
+ 'gluster=swift.plugins.middleware.gluster:filter_factory',
|
|
],
|
|
},
|
|
)
|
|
diff --git a/swift/account/server.py b/swift/account/server.py
|
|
index 800b3c0..eaf9e0d 100644
|
|
--- a/swift/account/server.py
|
|
+++ b/swift/account/server.py
|
|
@@ -1,4 +1,5 @@
|
|
# Copyright (c) 2010-2012 OpenStack, LLC.
|
|
+# Copyright (c) 2012 Red Hat, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
@@ -29,6 +30,10 @@ from webob.exc import HTTPAccepted, HTTPBadRequest, \
|
|
HTTPPreconditionFailed, HTTPConflict
|
|
import simplejson
|
|
|
|
+from swift.plugins.utils import Gluster_enabled
|
|
+if Gluster_enabled():
|
|
+ from swift.plugins.DiskDir import DiskAccount
|
|
+
|
|
from swift.common.db import AccountBroker
|
|
from swift.common.utils import get_logger, get_param, hash_path, \
|
|
normalize_timestamp, split_path, storage_directory
|
|
@@ -54,6 +59,8 @@ class AccountController(object):
|
|
conf.get('auto_create_account_prefix') or '.'
|
|
|
|
def _get_account_broker(self, drive, part, account):
|
|
+ if Gluster_enabled():
|
|
+ return DiskAccount(self.root, account, self.logger)
|
|
hsh = hash_path(account)
|
|
db_dir = storage_directory(DATADIR, part, hsh)
|
|
db_path = os.path.join(self.root, drive, db_dir, hsh + '.db')
|
|
diff --git a/swift/container/server.py b/swift/container/server.py
|
|
index 8a18cfd..3da0f95 100644
|
|
--- a/swift/container/server.py
|
|
+++ b/swift/container/server.py
|
|
@@ -1,4 +1,5 @@
|
|
# Copyright (c) 2010-2012 OpenStack, LLC.
|
|
+# Copyright (c) 2012 Red Hat, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
@@ -29,6 +30,10 @@ from webob.exc import HTTPAccepted, HTTPBadRequest, HTTPConflict, \
|
|
HTTPCreated, HTTPInternalServerError, HTTPNoContent, \
|
|
HTTPNotFound, HTTPPreconditionFailed, HTTPMethodNotAllowed
|
|
|
|
+from swift.plugins.utils import Gluster_enabled
|
|
+if Gluster_enabled():
|
|
+ from swift.plugins.DiskDir import DiskDir
|
|
+
|
|
from swift.common.db import ContainerBroker
|
|
from swift.common.utils import get_logger, get_param, hash_path, \
|
|
normalize_timestamp, storage_directory, split_path, validate_sync_to
|
|
@@ -73,6 +78,8 @@ class ContainerController(object):
|
|
:param container: container name
|
|
:returns: ContainerBroker object
|
|
"""
|
|
+ if Gluster_enabled():
|
|
+ return DiskDir(self.root, account, container, self.logger)
|
|
hsh = hash_path(account, container)
|
|
db_dir = storage_directory(DATADIR, part, hsh)
|
|
db_path = os.path.join(self.root, drive, db_dir, hsh + '.db')
|
|
diff --git a/swift/obj/server.py b/swift/obj/server.py
|
|
index 9cca16b..448ea5c 100644
|
|
--- a/swift/obj/server.py
|
|
+++ b/swift/obj/server.py
|
|
@@ -1,4 +1,5 @@
|
|
# Copyright (c) 2010-2012 OpenStack, LLC.
|
|
+# Copyright (c) 2012 Red Hat, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
@@ -35,6 +36,8 @@ from webob.exc import HTTPAccepted, HTTPBadRequest, HTTPCreated, \
|
|
from xattr import getxattr, setxattr
|
|
from eventlet import sleep, Timeout, tpool
|
|
|
|
+from swift.plugins.utils import Gluster_enabled
|
|
+
|
|
from swift.common.utils import mkdirs, normalize_timestamp, \
|
|
storage_directory, hash_path, renamer, fallocate, \
|
|
split_path, drop_buffer_cache, get_logger, write_pickle
|
|
@@ -340,6 +343,10 @@ class DiskFile(object):
|
|
raise DiskFileNotExist('Data File does not exist.')
|
|
|
|
|
|
+if Gluster_enabled():
|
|
+ from swift.plugins.DiskFile import Gluster_DiskFile
|
|
+
|
|
+
|
|
class ObjectController(object):
|
|
"""Implements the WSGI application for the Swift Object Server."""
|
|
|
|
@@ -378,6 +385,15 @@ class ObjectController(object):
|
|
self.expiring_objects_container_divisor = \
|
|
int(conf.get('expiring_objects_container_divisor') or 86400)
|
|
|
|
+ def get_DiskFile_obj(self, path, device, partition, account, container, obj,
|
|
+ logger, keep_data_fp=False, disk_chunk_size=65536):
|
|
+ if Gluster_enabled():
|
|
+ return Gluster_DiskFile(path, device, partition, account, container,
|
|
+ obj, logger, keep_data_fp, disk_chunk_size)
|
|
+ else:
|
|
+ return DiskFile(path, device, partition, account, container,
|
|
+ obj, logger, keep_data_fp, disk_chunk_size)
|
|
+
|
|
def async_update(self, op, account, container, obj, host, partition,
|
|
contdevice, headers_out, objdevice):
|
|
"""
|
|
@@ -493,7 +509,7 @@ class ObjectController(object):
|
|
content_type='text/plain')
|
|
if self.mount_check and not check_mount(self.devices, device):
|
|
return Response(status='507 %s is not mounted' % device)
|
|
- file = DiskFile(self.devices, device, partition, account, container,
|
|
+ file = self.get_DiskFile_obj(self.devices, device, partition, account, container,
|
|
obj, self.logger, disk_chunk_size=self.disk_chunk_size)
|
|
|
|
if 'X-Delete-At' in file.metadata and \
|
|
@@ -548,7 +564,7 @@ class ObjectController(object):
|
|
if new_delete_at and new_delete_at < time.time():
|
|
return HTTPBadRequest(body='X-Delete-At in past', request=request,
|
|
content_type='text/plain')
|
|
- file = DiskFile(self.devices, device, partition, account, container,
|
|
+ file = self.get_DiskFile_obj(self.devices, device, partition, account, container,
|
|
obj, self.logger, disk_chunk_size=self.disk_chunk_size)
|
|
orig_timestamp = file.metadata.get('X-Timestamp')
|
|
upload_expiration = time.time() + self.max_upload_time
|
|
@@ -626,9 +642,9 @@ class ObjectController(object):
|
|
content_type='text/plain')
|
|
if self.mount_check and not check_mount(self.devices, device):
|
|
return Response(status='507 %s is not mounted' % device)
|
|
- file = DiskFile(self.devices, device, partition, account, container,
|
|
- obj, self.logger, keep_data_fp=True,
|
|
- disk_chunk_size=self.disk_chunk_size)
|
|
+ file = self.get_DiskFile_obj(self.devices, device, partition, account, container,
|
|
+ obj, self.logger, keep_data_fp=True,
|
|
+ disk_chunk_size=self.disk_chunk_size)
|
|
if file.is_deleted() or ('X-Delete-At' in file.metadata and
|
|
int(file.metadata['X-Delete-At']) <= time.time()):
|
|
if request.headers.get('if-match') == '*':
|
|
@@ -702,7 +718,7 @@ class ObjectController(object):
|
|
return resp
|
|
if self.mount_check and not check_mount(self.devices, device):
|
|
return Response(status='507 %s is not mounted' % device)
|
|
- file = DiskFile(self.devices, device, partition, account, container,
|
|
+ file = self.get_DiskFile_obj(self.devices, device, partition, account, container,
|
|
obj, self.logger, disk_chunk_size=self.disk_chunk_size)
|
|
if file.is_deleted() or ('X-Delete-At' in file.metadata and
|
|
int(file.metadata['X-Delete-At']) <= time.time()):
|
|
@@ -744,7 +760,7 @@ class ObjectController(object):
|
|
if self.mount_check and not check_mount(self.devices, device):
|
|
return Response(status='507 %s is not mounted' % device)
|
|
response_class = HTTPNoContent
|
|
- file = DiskFile(self.devices, device, partition, account, container,
|
|
+ file = self.get_DiskFile_obj(self.devices, device, partition, account, container,
|
|
obj, self.logger, disk_chunk_size=self.disk_chunk_size)
|
|
if 'x-if-delete-at' in request.headers and \
|
|
int(request.headers['x-if-delete-at']) != \
|