1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-02-20 21:27:32 +00:00

increase DEFAULT_SEGMENTS_PER_DIR to 2000

This commit is contained in:
Marian Beermann 2017-03-01 19:26:20 +01:00
parent 334a7007da
commit 8e24ddae06

View file

@ -31,8 +31,7 @@
# the header, and the total size was set to 20 MiB).
MAX_DATA_SIZE = 20971479
# A few hundred files per directory to go easy on filesystems which don't like too many files per dir (NTFS)
DEFAULT_SEGMENTS_PER_DIR = 500
DEFAULT_SEGMENTS_PER_DIR = 2000
CHUNK_MIN_EXP = 19 # 2**19 == 512kiB
CHUNK_MAX_EXP = 23 # 2**23 == 8MiB