summaryrefslogtreecommitdiff
path: root/swiftclient
diff options
context:
space:
mode:
authorTim Burke <tim.burke@gmail.com>2017-03-15 18:05:38 +0000
committerTim Burke <tim.burke@gmail.com>2017-07-11 17:04:49 -0700
commit638d7c789cf3ccab61bf6af6fcab6e6d79b9e0a4 (patch)
tree9574c7dbbbf4f7760e87a48970e5b1823a0ad0c7 /swiftclient
parentcde73c196d4f161b227fb924cd59cf02eaa33c03 (diff)
downloadpython-swiftclient-638d7c789cf3ccab61bf6af6fcab6e6d79b9e0a4.tar.gz
Buffer reads from disk
Otherwise, Python defaults to 8k reads which seems kinda terrible. Change-Id: I3160626e947083af487fd1c3cb0aa6a62646527b Closes-Bug: #1671621
Diffstat (limited to 'swiftclient')
-rw-r--r--swiftclient/service.py19
1 files changed, 10 insertions, 9 deletions
diff --git a/swiftclient/service.py b/swiftclient/service.py
index 5a43bf2..5f032be 100644
--- a/swiftclient/service.py
+++ b/swiftclient/service.py
@@ -50,6 +50,7 @@ from swiftclient.exceptions import ClientException
from swiftclient.multithreading import MultiThreadingManager
+DISK_BUFFER = 2 ** 16
logger = logging.getLogger("swiftclient.service")
@@ -1126,14 +1127,14 @@ class SwiftService(object):
if options['skip_identical']:
filename = out_file if out_file else path
try:
- fp = open(filename, 'rb')
+ fp = open(filename, 'rb', DISK_BUFFER)
except IOError:
pass
else:
with fp:
md5sum = md5()
while True:
- data = fp.read(65536)
+ data = fp.read(DISK_BUFFER)
if not data:
break
md5sum.update(data)
@@ -1141,7 +1142,7 @@ class SwiftService(object):
try:
start_time = time()
- get_args = {'resp_chunk_size': 65536,
+ get_args = {'resp_chunk_size': DISK_BUFFER,
'headers': req_headers,
'response_dict': results_dict}
if options['skip_identical']:
@@ -1224,10 +1225,10 @@ class SwiftService(object):
if not no_file:
if out_file:
- fp = open(out_file, 'wb')
+ fp = open(out_file, 'wb', DISK_BUFFER)
else:
if basename(path):
- fp = open(path, 'wb')
+ fp = open(path, 'wb', DISK_BUFFER)
else:
pseudodir = True
@@ -1733,7 +1734,7 @@ class SwiftService(object):
}
fp = None
try:
- fp = open(path, 'rb')
+ fp = open(path, 'rb', DISK_BUFFER)
fp.seek(segment_start)
contents = LengthWrapper(fp, segment_size, md5=options['checksum'])
@@ -1811,7 +1812,7 @@ class SwiftService(object):
def _is_identical(self, chunk_data, path):
try:
- fp = open(path, 'rb')
+ fp = open(path, 'rb', DISK_BUFFER)
except IOError:
return False
@@ -1820,7 +1821,7 @@ class SwiftService(object):
to_read = chunk['bytes']
md5sum = md5()
while to_read:
- data = fp.read(min(65536, to_read))
+ data = fp.read(min(DISK_BUFFER, to_read))
if not data:
return False
md5sum.update(data)
@@ -2032,7 +2033,7 @@ class SwiftService(object):
try:
if path is not None:
content_length = getsize(path)
- fp = open(path, 'rb')
+ fp = open(path, 'rb', DISK_BUFFER)
contents = LengthWrapper(fp,
content_length,
md5=options['checksum'])