From 8e24ddae062df0cc014db3a8de25259c5fb4cb2d Mon Sep 17 00:00:00 2001 From: Marian Beermann Date: Wed, 1 Mar 2017 19:26:20 +0100 Subject: [PATCH] increase DEFAULT_SEGMENTS_PER_DIR to 2000 --- src/borg/constants.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/borg/constants.py b/src/borg/constants.py index f7cb11c92..b60627f59 100644 --- a/src/borg/constants.py +++ b/src/borg/constants.py @@ -31,8 +31,7 @@ DEFAULT_MAX_SEGMENT_SIZE = 500 * 1024 * 1024 # 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