Browse Source

reduce group size from 256MB to 64MB

pull/3942/merge
chrislu 2 years ago
parent
commit
85f1b70207
  1. 2
      weed/filer/filechunk_section.go

2
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

Loading…
Cancel
Save