summaryrefslogtreecommitdiffstats
path: root/gluster/swift/obj/diskfile.py
diff options
context:
space:
mode:
authorPrashanth Pai <ppai@redhat.com>2016-03-10 15:30:36 +0530
committerThiago da Silva <thiago@redhat.com>2016-04-04 11:01:36 -0700
commit789f1a150c87f05905b02dfdd8ad77ac6c1ba46f (patch)
tree7589e03ff9d02f3bff90320447582ce4a10d64a3 /gluster/swift/obj/diskfile.py
parentc73037e90c3f551caf18df41efd7fa9750454a10 (diff)
Remove redundant syscalls in POST path
During process of POST requests which updates object metadata (xattrs), the following (ordered) sequence of syscalls were being made twice: open(), fstat(), fgetxattr(), close() Intuitively, one may assume that a getxattr() and setxattr() is enough to fulfil the POST request as it is only supposed to update metadata. But this isn't the case. The above series of syscalls is made first during disk_file.open(). This will trigger an update of all stale metadata (outdated size/etag) and the result is retained in a diskfile class attribute named 'self._metadata' Instead of using this pre-fetched metadata, the POST path was internally invoking disk_file.open() again in disk_file.write_metadata(). This is redundant and serves no purpose. self._metadata was being erased during the context manager cleanup of disk_file.open() This change is simple and does the following: * Don't erase fetched metadata during context manager exit of open() * Use a different internal variable to detect and raise DiskFileNotOpen * Re-use self._metadata if available in disk_file.write_metadata() Here's comparing syscalls made (POST path) with and without this fix: https://bugzilla.redhat.com/show_bug.cgi?id=1314171#c4 Change-Id: Ib64c103e5904428df20ec6e8f10140f4f68e7f79 Signed-off-by: Prashanth Pai <ppai@redhat.com> Reviewed-on: http://review.gluster.org/13668 Reviewed-by: Thiago da Silva <thiago@redhat.com> Tested-by: Thiago da Silva <thiago@redhat.com>
Diffstat (limited to 'gluster/swift/obj/diskfile.py')
-rw-r--r--gluster/swift/obj/diskfile.py24
1 files changed, 19 insertions, 5 deletions
diff --git a/gluster/swift/obj/diskfile.py b/gluster/swift/obj/diskfile.py
index b776d0f..1cbb2e7 100644
--- a/gluster/swift/obj/diskfile.py
+++ b/gluster/swift/obj/diskfile.py
@@ -576,6 +576,7 @@ class DiskFile(object):
self._put_datadir = self._container_path
self._data_file = os.path.join(self._put_datadir, self._obj)
+ self._disk_file_open = False
def open(self):
"""
@@ -641,6 +642,7 @@ class DiskFile(object):
# Re-raise the original exception after fd has been closed
raise
+ self._disk_file_open = True
return self
def _is_object_expired(self, metadata):
@@ -674,7 +676,7 @@ class DiskFile(object):
previously invoked the :func:`swift.obj.diskfile.DiskFile.open`
method.
"""
- if self._metadata is None:
+ if not self._disk_file_open:
raise DiskFileNotOpen()
return self
@@ -694,19 +696,23 @@ class DiskFile(object):
the REST API *before* the object has actually been read. It is the
responsibility of the implementation to properly handle that.
"""
- self._metadata = None
+ self._disk_file_open = False
self._close_fd()
def get_metadata(self):
"""
Provide the metadata for a previously opened object as a dictionary.
+ This is invoked by Swift code in the GET path as follows:
+ with disk_file.open():
+ metadata = disk_file.get_metadata()
+
:returns: object's metadata dictionary
:raises DiskFileNotOpen: if the
:func:`swift.obj.diskfile.DiskFile.open` method was not previously
invoked
"""
- if self._metadata is None:
+ if not self._disk_file_open:
raise DiskFileNotOpen()
return self._metadata
@@ -715,6 +721,9 @@ class DiskFile(object):
Return the metadata for an object without requiring the caller to open
the object first.
+ This method is invoked by Swift code in POST, PUT, HEAD and DELETE path
+ metadata = disk_file.read_metadata()
+
:returns: metadata dictionary for an object
:raises DiskFileError: this implementation will raise the same
errors as the `open()` method.
@@ -736,7 +745,7 @@ class DiskFile(object):
OS buffer cache
:returns: a :class:`swift.obj.diskfile.DiskFileReader` object
"""
- if self._metadata is None:
+ if not self._disk_file_open:
raise DiskFileNotOpen()
dr = DiskFileReader(
self._fd, self._threadpool, self._mgr.disk_chunk_size,
@@ -915,6 +924,8 @@ class DiskFile(object):
Write a block of metadata to an object without requiring the caller to
open the object first.
+ This method is only called in the POST path.
+
:param metadata: dictionary of metadata to be associated with the
object
:raises DiskFileError: this implementation will raise the same
@@ -933,7 +944,10 @@ class DiskFile(object):
metadata. If there are any, it should be appended to the metadata obj
the user is trying to write.
"""
- orig_metadata = self.read_metadata()
+ # If metadata has been previously fetched, use that.
+ # Stale metadata (outdated size/etag) would've been updated when
+ # metadata is fetched for the first time.
+ orig_metadata = self._metadata or read_metadata(self._data_file)
sys_keys = [X_CONTENT_TYPE, X_ETAG, 'name', X_CONTENT_LENGTH,
X_OBJECT_TYPE, X_TYPE]