lotus/chain/messagepool/config.go

93 lines
2.1 KiB
Go
Raw Normal View History

2020-08-07 14:33:55 +00:00
package messagepool
import (
2020-08-07 17:10:09 +00:00
"encoding/json"
"fmt"
2020-08-07 16:50:10 +00:00
"time"
2020-08-07 14:33:55 +00:00
"github.com/filecoin-project/lotus/chain/types"
2020-08-07 17:10:09 +00:00
"github.com/filecoin-project/lotus/node/modules/dtypes"
"github.com/ipfs/go-datastore"
2020-08-07 14:33:55 +00:00
)
var (
ReplaceByFeeRatioDefault = 1.25
MemPoolSizeLimitHiDefault = 30000
MemPoolSizeLimitLoDefault = 20000
2020-08-07 16:50:10 +00:00
PruneCooldownDefault = time.Minute
GasLimitOverestimation = 1.25
2020-08-07 17:10:09 +00:00
ConfigKey = datastore.NewKey("/mpool/config")
2020-08-07 14:33:55 +00:00
)
2020-08-07 17:10:09 +00:00
func loadConfig(ds dtypes.MetadataDS) (*types.MpoolConfig, error) {
haveCfg, err := ds.Has(ConfigKey)
if err != nil {
return nil, err
}
2020-08-07 17:20:22 +00:00
if !haveCfg {
2020-08-07 17:10:09 +00:00
return DefaultConfig(), nil
}
2020-08-07 17:20:22 +00:00
cfgBytes, err := ds.Get(ConfigKey)
if err != nil {
return nil, err
}
cfg := new(types.MpoolConfig)
err = json.Unmarshal(cfgBytes, cfg)
return cfg, err
2020-08-07 17:10:09 +00:00
}
func saveConfig(cfg *types.MpoolConfig, ds dtypes.MetadataDS) error {
cfgBytes, err := json.Marshal(cfg)
if err != nil {
return err
}
return ds.Put(ConfigKey, cfgBytes)
}
2020-08-07 14:33:55 +00:00
func (mp *MessagePool) GetConfig() *types.MpoolConfig {
mp.cfgLk.Lock()
defer mp.cfgLk.Unlock()
return mp.cfg.Clone()
}
func validateConfg(cfg *types.MpoolConfig) error {
if cfg.ReplaceByFeeRatio < ReplaceByFeeRatioDefault {
return fmt.Errorf("'ReplaceByFeeRatio' is less than required %f < %f",
cfg.ReplaceByFeeRatio, ReplaceByFeeRatioDefault)
}
if cfg.GasLimitOverestimation < 1 {
return fmt.Errorf("'GasLimitOverestimation' cannot be less than 1")
}
return nil
}
func (mp *MessagePool) SetConfig(cfg *types.MpoolConfig) error {
if err := validateConfg(cfg); err != nil {
return err
}
2020-08-07 14:33:55 +00:00
cfg = cfg.Clone()
2020-08-07 14:33:55 +00:00
mp.cfgLk.Lock()
mp.cfg = cfg
2020-08-07 17:10:09 +00:00
err := saveConfig(cfg, mp.ds)
if err != nil {
log.Warnf("error persisting mpool config: %s", err)
}
2020-08-07 14:33:55 +00:00
mp.cfgLk.Unlock()
return nil
2020-08-07 14:33:55 +00:00
}
func DefaultConfig() *types.MpoolConfig {
return &types.MpoolConfig{
SizeLimitHigh: MemPoolSizeLimitHiDefault,
SizeLimitLow: MemPoolSizeLimitLoDefault,
ReplaceByFeeRatio: ReplaceByFeeRatioDefault,
PruneCooldown: PruneCooldownDefault,
GasLimitOverestimation: GasLimitOverestimation,
2020-08-07 14:33:55 +00:00
}
}