aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchrislu <chris.lu@gmail.com>2023-01-10 01:35:44 -0800
committerchrislu <chris.lu@gmail.com>2023-01-10 01:35:44 -0800
commit85f1b7020792f2f0dcbceee944915e3f8ad492a7 (patch)
treedeecf1bc2cbaf45968f8dc67fdde61d257b5a81d
parent86657ed3a808541c23ccb4486e8defee44963306 (diff)
downloadseaweedfs-85f1b7020792f2f0dcbceee944915e3f8ad492a7.tar.xz
seaweedfs-85f1b7020792f2f0dcbceee944915e3f8ad492a7.zip
reduce group size from 256MB to 64MB
-rw-r--r--weed/filer/filechunk_section.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/filer/filechunk_section.go b/weed/filer/filechunk_section.go
index 350cc44d1..a80013f22 100644
--- a/weed/filer/filechunk_section.go
+++ b/weed/filer/filechunk_section.go
@@ -5,7 +5,7 @@ import (
"sync"
)
-const SectionSize = 2 * 1024 * 1024 * 128 // 256MiB
+const SectionSize = 2 * 1024 * 1024 * 32 // 64MiB
type SectionIndex int64
type FileChunkSection struct {
sectionIndex SectionIndex