Bug 1000718 - Create hierarchy at the storage level instead of when creating the key. r=mshal

Also, use a two-level hierarchy for local storage
This commit is contained in:
Mike Hommey 2014-04-25 07:26:31 +09:00
Родитель e401cb6a95
Коммит 27424e20e0
2 изменённых файлов: 12 добавлений и 6 удалений

Просмотреть файл

@ -209,8 +209,7 @@ def hash_key(compiler, args, preprocessed):
h.update(compiler.executable)
h.update(' '.join(args))
h.update(preprocessed)
digest = h.hexdigest()
return '%s/%s/%s/%s' % (digest[0], digest[1], digest[2], digest)
return h.hexdigest()
def _run_command(job):

Просмотреть файл

@ -77,14 +77,17 @@ class LocalStorage(Storage):
if not os.path.isdir(path):
raise RuntimeError('%s is not a directory' % directory)
def _normalize_key(self, key):
return '%s/%s/%s' % (key[0], key[1], key)
def get(self, key):
path = os.path.join(self._directory, key)
path = os.path.join(self._directory, self._normalize_key(key))
if os.path.isfile(path):
with open(path, 'rb') as data:
return data.read()
def put(self, key, data):
path = os.path.join(self._directory, key)
path = os.path.join(self._directory, self._normalize_key(key))
parent = os.path.dirname(path)
self._ensure_dir(os.path.dirname(path))
with open(path, 'wb') as out:
@ -130,11 +133,15 @@ class S3Storage(Storage):
self.last_stats = {}
def _normalize_key(self, key):
return '%s/%s/%s/%s' % (key[0], key[1], key[2], key)
def get(self, key):
# Don't use boto here, because it can't do simple GET requests, and those
# are actually significantly faster.
url = 'http://%s%s' % (self._host,
self._calling_format.build_path_base(self._bucket_name, key))
self._calling_format.build_path_base(self._bucket_name,
self._normalize_key(key)))
_last_stats.clear()
try:
data = self._url_opener.open(url).read()
@ -152,7 +159,7 @@ class S3Storage(Storage):
_last_stats.clear()
_last_stats['size'] = len(data)
try:
k = self._bucket.new_key(key)
k = self._bucket.new_key(self._normalize_key(key))
k.set_contents_from_string(data, headers={
'x-amz-acl': 'public-read',
})