mirror of
https://github.com/borgbackup/borg.git
synced 2026-06-15 12:34:34 -04:00
blosc: increase blocksize to 16kiB
This commit is contained in:
parent
7c66779345
commit
32fa83c156
1 changed files with 1 additions and 1 deletions
|
|
@ -210,7 +210,7 @@ class BLOSCCompressor(object):
|
|||
raise NotImplemented("%s compression needs blosc from PyPi" % self.CNAME)
|
||||
if self.CNAME not in blosc.compressor_list():
|
||||
raise NotImplemented("%s compression is not supported by blosc" % self.CNAME)
|
||||
blosc.set_blocksize(8192) # maybe 8 threads processing a 64KB chunks -> 8KB block
|
||||
blosc.set_blocksize(16384) # 16kiB is the minimum, so 64kiB are enough for 4 threads
|
||||
|
||||
def _get_level(self):
|
||||
raise NotImplemented
|
||||
|
|
|
|||
Loading…
Reference in a new issue