feat: add configurable iavl cache size (#10561)
<!-- The default pull request template is for types feat, fix, or refactor. For other templates, add one of the following parameters to the url: - template=docs.md - template=other.md --> ## Description Closes: #1714 Bump default cache size to 50mb from 10kb. Allow node operators to set cache size. --- ### Author Checklist *All items are required. Please add a note to the item if the item is not applicable and please add links to any relevant follow up issues.* I have... - [ ] included the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] added `!` to the type prefix if API or client breaking change - [ ] targeted the correct branch (see [PR Targeting](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#pr-targeting)) - [ ] provided a link to the relevant issue or specification - [ ] followed the guidelines for [building modules](https://github.com/cosmos/cosmos-sdk/blob/master/docs/building-modules) - [ ] included the necessary unit and integration [tests](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#testing) - [ ] added a changelog entry to `CHANGELOG.md` - [ ] included comments for [documenting Go code](https://blog.golang.org/godoc) - [ ] updated the relevant documentation or specification - [ ] reviewed "Files changed" and left comments if necessary - [ ] confirmed all CI checks have passed ### Reviewers Checklist *All items are required. Please add a note if the item is not applicable and please add your handle next to the items reviewed if you only reviewed selected items.* I have... - [ ] confirmed the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] confirmed `!` in the type prefix if API or client breaking change - [ ] confirmed all author checklist items have been addressed - [ ] reviewed state machine logic - [ ] reviewed API design and naming - [ ] reviewed documentation is accurate - [ ] reviewed tests and test coverage - [ ] manually tested (if applicable)
This commit is contained in:
parent
56e2ef6104
commit
76dde98536
|
@ -51,6 +51,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
|
|||
* [\#10348](https://github.com/cosmos/cosmos-sdk/pull/10348) Add `fee.{payer,granter}` and `tip` fields to StdSignDoc for signing tipped transactions.
|
||||
* [\#10208](https://github.com/cosmos/cosmos-sdk/pull/10208) Add `TipsTxMiddleware` for transferring tips.
|
||||
* [\#10379](https://github.com/cosmos/cosmos-sdk/pull/10379) Add validation to `x/upgrade` CLI `software-upgrade` command `--plan-info` value.
|
||||
* [\#10561](https://github.com/cosmos/cosmos-sdk/pull/10561) Add configurable IAVL cache size to app.toml
|
||||
|
||||
### Improvements
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ import (
|
|||
|
||||
// SetPruning sets a pruning option on the multistore associated with the app
|
||||
func SetPruning(opts sdk.PruningOptions) func(*BaseApp) {
|
||||
return func(bap *BaseApp) { bap.cms.SetPruning(opts) }
|
||||
return func(bapp *BaseApp) { bapp.cms.SetPruning(opts) }
|
||||
}
|
||||
|
||||
// SetMinGasPrices returns an option that sets the minimum gas prices on the app.
|
||||
|
@ -28,17 +28,17 @@ func SetMinGasPrices(gasPricesStr string) func(*BaseApp) {
|
|||
panic(fmt.Sprintf("invalid minimum gas prices: %v", err))
|
||||
}
|
||||
|
||||
return func(bap *BaseApp) { bap.setMinGasPrices(gasPrices) }
|
||||
return func(bapp *BaseApp) { bapp.setMinGasPrices(gasPrices) }
|
||||
}
|
||||
|
||||
// SetHaltHeight returns a BaseApp option function that sets the halt block height.
|
||||
func SetHaltHeight(blockHeight uint64) func(*BaseApp) {
|
||||
return func(bap *BaseApp) { bap.setHaltHeight(blockHeight) }
|
||||
return func(bapp *BaseApp) { bapp.setHaltHeight(blockHeight) }
|
||||
}
|
||||
|
||||
// SetHaltTime returns a BaseApp option function that sets the halt block time.
|
||||
func SetHaltTime(haltTime uint64) func(*BaseApp) {
|
||||
return func(bap *BaseApp) { bap.setHaltTime(haltTime) }
|
||||
return func(bapp *BaseApp) { bapp.setHaltTime(haltTime) }
|
||||
}
|
||||
|
||||
// SetMinRetainBlocks returns a BaseApp option function that sets the minimum
|
||||
|
@ -58,6 +58,11 @@ func SetIndexEvents(ie []string) func(*BaseApp) {
|
|||
return func(app *BaseApp) { app.setIndexEvents(ie) }
|
||||
}
|
||||
|
||||
// SetIAVLCacheSize provides a BaseApp option function that sets the size of IAVL cache.
|
||||
func SetIAVLCacheSize(size int) func(*BaseApp) {
|
||||
return func(bapp *BaseApp) { bapp.cms.SetIAVLCacheSize(size) }
|
||||
}
|
||||
|
||||
// SetInterBlockCache provides a BaseApp option function that sets the
|
||||
// inter-block cache.
|
||||
func SetInterBlockCache(cache sdk.MultiStorePersistentCache) func(*BaseApp) {
|
||||
|
|
|
@ -69,6 +69,8 @@ type BaseConfig struct {
|
|||
// IndexEvents defines the set of events in the form {eventType}.{attributeKey},
|
||||
// which informs Tendermint what to index. If empty, all events will be indexed.
|
||||
IndexEvents []string `mapstructure:"index-events"`
|
||||
// IavlCacheSize set the size of the iavl tree cache.
|
||||
IAVLCacheSize uint64 `mapstructure:"iavl-cache-size"`
|
||||
}
|
||||
|
||||
// APIConfig defines the API listener configuration.
|
||||
|
@ -209,6 +211,7 @@ func DefaultConfig() *Config {
|
|||
PruningInterval: "0",
|
||||
MinRetainBlocks: 0,
|
||||
IndexEvents: make([]string, 0),
|
||||
IAVLCacheSize: 781250, // 50 MB
|
||||
},
|
||||
Telemetry: telemetry.Config{
|
||||
Enabled: false,
|
||||
|
|
|
@ -72,6 +72,10 @@ inter-block-cache = {{ .BaseConfig.InterBlockCache }}
|
|||
# ["message.sender", "message.recipient"]
|
||||
index-events = [{{ range .BaseConfig.IndexEvents }}{{ printf "%q, " . }}{{end}}]
|
||||
|
||||
# IavlCacheSize set the size of the iavl tree cache.
|
||||
# Default cache size is 50mb.
|
||||
iavl-cache-size = {{ .BaseConfig.IAVLCacheSize }}
|
||||
|
||||
###############################################################################
|
||||
### Telemetry Configuration ###
|
||||
###############################################################################
|
||||
|
|
|
@ -114,6 +114,9 @@ func (ms multiStore) GetStoreType() storetypes.StoreType {
|
|||
func (ms multiStore) SetInterBlockCache(_ sdk.MultiStorePersistentCache) {
|
||||
panic("not implemented")
|
||||
}
|
||||
func (ms multiStore) SetIAVLCacheSize(size int) {
|
||||
panic("not implemented")
|
||||
}
|
||||
|
||||
func (ms multiStore) SetInitialVersion(version int64) error {
|
||||
panic("not implemented")
|
||||
|
|
|
@ -22,7 +22,7 @@ import (
|
|||
)
|
||||
|
||||
const (
|
||||
defaultIAVLCacheSize = 10000
|
||||
DefaultIAVLCacheSize = 500000
|
||||
)
|
||||
|
||||
var (
|
||||
|
@ -41,16 +41,16 @@ type Store struct {
|
|||
// LoadStore returns an IAVL Store as a CommitKVStore. Internally, it will load the
|
||||
// store's version (id) from the provided DB. An error is returned if the version
|
||||
// fails to load, or if called with a positive version on an empty tree.
|
||||
func LoadStore(db dbm.DB, id types.CommitID, lazyLoading bool) (types.CommitKVStore, error) {
|
||||
return LoadStoreWithInitialVersion(db, id, lazyLoading, 0)
|
||||
func LoadStore(db dbm.DB, id types.CommitID, lazyLoading bool, cacheSize int) (types.CommitKVStore, error) {
|
||||
return LoadStoreWithInitialVersion(db, id, lazyLoading, 0, cacheSize)
|
||||
}
|
||||
|
||||
// LoadStoreWithInitialVersion returns an IAVL Store as a CommitKVStore setting its initialVersion
|
||||
// to the one given. Internally, it will load the store's version (id) from the
|
||||
// provided DB. An error is returned if the version fails to load, or if called with a positive
|
||||
// version on an empty tree.
|
||||
func LoadStoreWithInitialVersion(db dbm.DB, id types.CommitID, lazyLoading bool, initialVersion uint64) (types.CommitKVStore, error) {
|
||||
tree, err := iavl.NewMutableTreeWithOpts(db, defaultIAVLCacheSize, &iavl.Options{InitialVersion: initialVersion})
|
||||
func LoadStoreWithInitialVersion(db dbm.DB, id types.CommitID, lazyLoading bool, initialVersion uint64, cacheSize int) (types.CommitKVStore, error) {
|
||||
tree, err := iavl.NewMutableTreeWithOpts(db, cacheSize, &iavl.Options{InitialVersion: initialVersion})
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
|
|
@ -93,17 +93,17 @@ func TestLoadStore(t *testing.T) {
|
|||
require.Equal(t, string(hcStore.Get([]byte("hello"))), "ciao")
|
||||
|
||||
// Querying a new store at some previous non-pruned height H
|
||||
newHStore, err := LoadStore(db, cIDH, false)
|
||||
newHStore, err := LoadStore(db, cIDH, false, DefaultIAVLCacheSize)
|
||||
require.NoError(t, err)
|
||||
require.Equal(t, string(newHStore.Get([]byte("hello"))), "hallo")
|
||||
|
||||
// Querying a new store at some previous pruned height Hp
|
||||
newHpStore, err := LoadStore(db, cIDHp, false)
|
||||
newHpStore, err := LoadStore(db, cIDHp, false, DefaultIAVLCacheSize)
|
||||
require.NoError(t, err)
|
||||
require.Equal(t, string(newHpStore.Get([]byte("hello"))), "hola")
|
||||
|
||||
// Querying a new store at current height H
|
||||
newHcStore, err := LoadStore(db, cIDHc, false)
|
||||
newHcStore, err := LoadStore(db, cIDHc, false, DefaultIAVLCacheSize)
|
||||
require.NoError(t, err)
|
||||
require.Equal(t, string(newHcStore.Get([]byte("hello"))), "ciao")
|
||||
}
|
||||
|
|
|
@ -14,7 +14,7 @@ import (
|
|||
func TestVerifyIAVLStoreQueryProof(t *testing.T) {
|
||||
// Create main tree for testing.
|
||||
db := dbm.NewMemDB()
|
||||
iStore, err := iavl.LoadStore(db, types.CommitID{}, false)
|
||||
iStore, err := iavl.LoadStore(db, types.CommitID{}, false, iavl.DefaultIAVLCacheSize)
|
||||
store := iStore.(*iavl.Store)
|
||||
require.Nil(t, err)
|
||||
store.Set([]byte("MYKEY"), []byte("MYVALUE"))
|
||||
|
|
|
@ -48,6 +48,7 @@ type Store struct {
|
|||
db dbm.DB
|
||||
lastCommitInfo *types.CommitInfo
|
||||
pruningOpts types.PruningOptions
|
||||
iavlCacheSize int
|
||||
storesParams map[types.StoreKey]storeParams
|
||||
stores map[types.StoreKey]types.CommitKVStore
|
||||
keysByName map[string]types.StoreKey
|
||||
|
@ -77,6 +78,7 @@ func NewStore(db dbm.DB) *Store {
|
|||
return &Store{
|
||||
db: db,
|
||||
pruningOpts: types.PruneNothing,
|
||||
iavlCacheSize: iavl.DefaultIAVLCacheSize,
|
||||
storesParams: make(map[types.StoreKey]storeParams),
|
||||
stores: make(map[types.StoreKey]types.CommitKVStore),
|
||||
keysByName: make(map[string]types.StoreKey),
|
||||
|
@ -98,6 +100,10 @@ func (rs *Store) SetPruning(pruningOpts types.PruningOptions) {
|
|||
rs.pruningOpts = pruningOpts
|
||||
}
|
||||
|
||||
func (rs *Store) SetIAVLCacheSize(cacheSize int) {
|
||||
rs.iavlCacheSize = cacheSize
|
||||
}
|
||||
|
||||
// SetLazyLoading sets if the iavl store should be loaded lazily or not
|
||||
func (rs *Store) SetLazyLoading(lazyLoading bool) {
|
||||
rs.lazyLoading = lazyLoading
|
||||
|
@ -895,9 +901,9 @@ func (rs *Store) loadCommitStoreFromParams(key types.StoreKey, id types.CommitID
|
|||
var err error
|
||||
|
||||
if params.initialVersion == 0 {
|
||||
store, err = iavl.LoadStore(db, id, rs.lazyLoading)
|
||||
store, err = iavl.LoadStore(db, id, rs.lazyLoading, rs.iavlCacheSize)
|
||||
} else {
|
||||
store, err = iavl.LoadStoreWithInitialVersion(db, id, rs.lazyLoading, params.initialVersion)
|
||||
store, err = iavl.LoadStoreWithInitialVersion(db, id, rs.lazyLoading, params.initialVersion, rs.iavlCacheSize)
|
||||
}
|
||||
|
||||
if err != nil {
|
||||
|
|
|
@ -12,7 +12,7 @@ import (
|
|||
|
||||
func newMemTestKVStore(t *testing.T) types.KVStore {
|
||||
db := dbm.NewMemDB()
|
||||
store, err := iavl.LoadStore(db, types.CommitID{}, false)
|
||||
store, err := iavl.LoadStore(db, types.CommitID{}, false, iavl.DefaultIAVLCacheSize)
|
||||
require.NoError(t, err)
|
||||
return store
|
||||
}
|
||||
|
|
|
@ -181,6 +181,9 @@ type CommitMultiStore interface {
|
|||
// SetInitialVersion sets the initial version of the IAVL tree. It is used when
|
||||
// starting a new chain at an arbitrary height.
|
||||
SetInitialVersion(version int64) error
|
||||
|
||||
// SetIAVLCacheSize sets the cache size of the IAVL tree.
|
||||
SetIAVLCacheSize(size int)
|
||||
}
|
||||
|
||||
//---------subsp-------------------------------
|
||||
|
|
Loading…
Reference in New Issue