diff options
author | Antoine Pitrou <pitrou@free.fr> | 2017-07-23 11:05:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-23 11:05:26 (GMT) |
commit | 3051f0b78e53d1b771b49375dc139ca13f9fd76e (patch) | |
tree | ec89d4a88f30a885d875f44948ccf41ed6c5ab1f /Lib | |
parent | 2b1e6e9696cb433c0e0da11145157d54275d119f (diff) | |
download | cpython-3051f0b78e53d1b771b49375dc139ca13f9fd76e.zip cpython-3051f0b78e53d1b771b49375dc139ca13f9fd76e.tar.gz cpython-3051f0b78e53d1b771b49375dc139ca13f9fd76e.tar.bz2 |
bpo-30919: shared memory allocation performance regression in multiprocessing (#2708)
* Fix #30919: shared memory allocation performance regression in multiprocessing
* Change strategy for Arena directory choice
* Add blurb
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/multiprocessing/heap.py | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/Lib/multiprocessing/heap.py b/Lib/multiprocessing/heap.py index 4433215..ee3ed55 100644 --- a/Lib/multiprocessing/heap.py +++ b/Lib/multiprocessing/heap.py @@ -60,26 +60,32 @@ if sys.platform == 'win32': else: class Arena(object): + if sys.platform == 'linux': + _dir_candidates = ['/dev/shm'] + else: + _dir_candidates = [] def __init__(self, size, fd=-1): self.size = size self.fd = fd if fd == -1: self.fd, name = tempfile.mkstemp( - prefix='pym-%d-'%os.getpid(), dir=util.get_temp_dir()) + prefix='pym-%d-'%os.getpid(), + dir=self._choose_dir(size)) os.unlink(name) util.Finalize(self, os.close, (self.fd,)) - with open(self.fd, 'wb', closefd=False) as f: - bs = 1024 * 1024 - if size >= bs: - zeros = b'\0' * bs - for _ in range(size // bs): - f.write(zeros) - del zeros - f.write(b'\0' * (size % bs)) - assert f.tell() == size + os.ftruncate(self.fd, size) self.buffer = mmap.mmap(self.fd, self.size) + def _choose_dir(self, size): + # Choose a non-storage backed directory if possible, + # to improve performance + for d in self._dir_candidates: + st = os.statvfs(d) + if st.f_bavail * st.f_frsize >= size: # enough free space? + return d + return util.get_temp_dir() + def reduce_arena(a): if a.fd == -1: raise ValueError('Arena is unpicklable because ' |