reduce group size from 256MB to 64MB

This commit is contained in:
chrislu 2023-01-10 01:35:44 -08:00
parent 86657ed3a8
commit 85f1b70207

View file

@ -5,7 +5,7 @@ import (
"sync" "sync"
) )
const SectionSize = 2 * 1024 * 1024 * 128 // 256MiB const SectionSize = 2 * 1024 * 1024 * 32 // 64MiB
type SectionIndex int64 type SectionIndex int64
type FileChunkSection struct { type FileChunkSection struct {
sectionIndex SectionIndex sectionIndex SectionIndex