forked from TrueCloudLab/frostfs-node
[#323] storage/blobovnicza: Add Timeout option of BoltDB instances
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
parent
06085ba8be
commit
a9c1f88b8a
1 changed files with 4 additions and 0 deletions
|
@ -2,6 +2,7 @@ package blobovnicza
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
"os"
|
||||||
|
"time"
|
||||||
|
|
||||||
"github.com/nspcc-dev/neofs-node/pkg/util/logger"
|
"github.com/nspcc-dev/neofs-node/pkg/util/logger"
|
||||||
"go.etcd.io/bbolt"
|
"go.etcd.io/bbolt"
|
||||||
|
@ -43,6 +44,9 @@ func defaultCfg() *cfg {
|
||||||
return &cfg{
|
return &cfg{
|
||||||
boltDBCfg: boltDBCfg{
|
boltDBCfg: boltDBCfg{
|
||||||
perm: os.ModePerm, // 0777
|
perm: os.ModePerm, // 0777
|
||||||
|
boltOptions: &bbolt.Options{
|
||||||
|
Timeout: 100 * time.Millisecond,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
fullSizeLimit: 1 << 30, // 1GB
|
fullSizeLimit: 1 << 30, // 1GB
|
||||||
objSizeLimit: 1 << 20, // 1MB
|
objSizeLimit: 1 << 20, // 1MB
|
||||||
|
|
Loading…
Reference in a new issue