mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-07 17:15:56 +00:00
Increase RBF WAL write cache size to 1MB.
Previously we dropped the cache size to 64KB but that seems much too low. Write performance suffers considerably.
This commit is contained in:
parent
3ff85ccb53
commit
db74f0dffa
1 changed files with 1 additions and 1 deletions
|
|
@ -48,7 +48,7 @@ func NewDefaultConfig() *Config {
|
|||
MaxSize: DefaultMaxSize,
|
||||
FsyncEnabled: true,
|
||||
CheckpointEveryDur: 10 * time.Second,
|
||||
MaxWALSegmentFileSize: 1 << 16,
|
||||
MaxWALSegmentFileSize: 1 << 20,
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue