separate LMDB options for hotstore and tracking stores
This commit is contained in:
parent
2c1a9781cf
commit
b83994797a
@ -611,9 +611,9 @@ func Repo(r repo.Repo) Option {
|
||||
Override(new(dtypes.UniversalBlockstore), modules.UniversalBlockstore),
|
||||
|
||||
If(cfg.Splitstore,
|
||||
If(cfg.UseLMDB,
|
||||
If(cfg.UseLMDBHotstore,
|
||||
Override(new(dtypes.HotBlockstore), modules.LMDBHotBlockstore)),
|
||||
If(!cfg.UseLMDB,
|
||||
If(!cfg.UseLMDBHotstore,
|
||||
Override(new(dtypes.HotBlockstore), modules.BadgerHotBlockstore)),
|
||||
Override(new(dtypes.SplitBlockstore), modules.SplitBlockstore(cfg)),
|
||||
Override(new(dtypes.ChainBlockstore), modules.ChainSplitBlockstore),
|
||||
|
@ -121,8 +121,9 @@ type Pubsub struct {
|
||||
}
|
||||
|
||||
type Blockstore struct {
|
||||
Splitstore bool
|
||||
UseLMDB bool
|
||||
Splitstore bool
|
||||
UseLMDBHotstore bool
|
||||
UseLMDBTracking bool
|
||||
}
|
||||
|
||||
// // Full Node
|
||||
|
@ -103,7 +103,7 @@ func SplitBlockstore(cfg *config.Blockstore) func(lc fx.Lifecycle, r repo.Locked
|
||||
return nil, err
|
||||
}
|
||||
|
||||
ss, err := splitstore.NewSplitStore(path, ds, cold, hot, cfg.UseLMDB)
|
||||
ss, err := splitstore.NewSplitStore(path, ds, cold, hot, cfg.UseLMDBTracking)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user