Skip to content

Commit

Permalink
feat: mpool: Cache actors in lite mode (filecoin-project#11668)
Browse files Browse the repository at this point in the history
  • Loading branch information
magik6k authored Mar 12, 2024
1 parent 6f7498b commit c1c5deb
Showing 1 changed file with 27 additions and 2 deletions.
29 changes: 27 additions & 2 deletions chain/messagepool/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import (
"errors"
"time"

lru "github.com/hashicorp/golang-lru/v2"
"github.com/ipfs/go-cid"
pubsub "github.com/libp2p/go-libp2p-pubsub"
"golang.org/x/xerrors"
Expand All @@ -16,6 +17,8 @@ import (
"github.com/filecoin-project/lotus/chain/stmgr"
"github.com/filecoin-project/lotus/chain/store"
"github.com/filecoin-project/lotus/chain/types"
"github.com/filecoin-project/lotus/lib/must"
"github.com/filecoin-project/lotus/lib/result"
)

var (
Expand All @@ -39,10 +42,19 @@ type Provider interface {
IsLite() bool
}

type actorCacheKey struct {
types.TipSetKey
address.Address
}

var nonceCacheSize = 128

type mpoolProvider struct {
sm *stmgr.StateManager
ps *pubsub.PubSub

liteActorCache *lru.Cache[actorCacheKey, result.Result[*types.Actor]]

lite MpoolNonceAPI
}

Expand All @@ -53,18 +65,31 @@ func NewProvider(sm *stmgr.StateManager, ps *pubsub.PubSub) Provider {
}

func NewProviderLite(sm *stmgr.StateManager, ps *pubsub.PubSub, noncer MpoolNonceAPI) Provider {
return &mpoolProvider{sm: sm, ps: ps, lite: noncer}
return &mpoolProvider{
sm: sm,
ps: ps,
lite: noncer,
liteActorCache: must.One(lru.New[actorCacheKey, result.Result[*types.Actor]](nonceCacheSize)),
}
}

func (mpp *mpoolProvider) IsLite() bool {
return mpp.lite != nil
}

func (mpp *mpoolProvider) getActorLite(addr address.Address, ts *types.TipSet) (*types.Actor, error) {
func (mpp *mpoolProvider) getActorLite(addr address.Address, ts *types.TipSet) (act *types.Actor, err error) {
if !mpp.IsLite() {
return nil, errors.New("should not use getActorLite on non lite Provider")
}

if c, ok := mpp.liteActorCache.Get(actorCacheKey{ts.Key(), addr}); ok {
return c.Unwrap()
}

defer func() {
mpp.liteActorCache.Add(actorCacheKey{ts.Key(), addr}, result.Wrap(act, err))
}()

n, err := mpp.lite.GetNonce(context.TODO(), addr, ts.Key())
if err != nil {
return nil, xerrors.Errorf("getting nonce over lite: %w", err)
Expand Down

0 comments on commit c1c5deb

Please sign in to comment.