[#323] storage/blobovnicza: Add Timeout option of BoltDB instances

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
remotes/KirillovDenis/release/v0.21.1
Leonard Lyubich 2021-01-18 16:03:00 +03:00 committed by Alex Vanin
parent 06085ba8be
commit a9c1f88b8a
1 changed files with 4 additions and 0 deletions

View File

@ -2,6 +2,7 @@ package blobovnicza
import (
"os"
"time"
"github.com/nspcc-dev/neofs-node/pkg/util/logger"
"go.etcd.io/bbolt"
@ -43,6 +44,9 @@ func defaultCfg() *cfg {
return &cfg{
boltDBCfg: boltDBCfg{
perm: os.ModePerm, // 0777
boltOptions: &bbolt.Options{
Timeout: 100 * time.Millisecond,
},
},
fullSizeLimit: 1 << 30, // 1GB
objSizeLimit: 1 << 20, // 1MB