Skip to content

Commit

Permalink
endblocker cached block hash pruning
Browse files Browse the repository at this point in the history
  • Loading branch information
rbajollari committed Dec 9, 2024
1 parent c031afc commit 84eeacd
Show file tree
Hide file tree
Showing 7 changed files with 116 additions and 39 deletions.
2 changes: 2 additions & 0 deletions proto/ojo/symbiotic/v1/symbiotic.proto
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ message Params {
string middleware_address = 1;
// block period for syncing with the symbiotic network on Ethereum
int64 symbiotic_sync_period = 2;
// maximum amount of cached block hashes in the store
uint64 maximum_cached_block_hashes = 3;
}

// Cached block hash and height of block hash from the chain the ojo middleware is on.
Expand Down
10 changes: 10 additions & 0 deletions util/block_period.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package util

import (
sdk "github.com/cosmos/cosmos-sdk/types"
)

// IsPeriodLastBlock returns true if we are at the last block of the period
func IsPeriodLastBlock(ctx sdk.Context, blocksPerPeriod uint64) bool {
return (SafeInt64ToUint64(ctx.BlockHeight())+1)%blocksPerPeriod == 0
}
10 changes: 5 additions & 5 deletions x/oracle/abci/endblocker.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ func EndBlocker(ctx context.Context, k keeper.Keeper) error {

// Set all current active validators into the ValidatorRewardSet at
// the beginning of a new Slash Window.
if k.IsPeriodLastBlock(sdkCtx, params.SlashWindow+1) {
if util.IsPeriodLastBlock(sdkCtx, params.SlashWindow+1) {
if err := k.SetValidatorRewardSet(sdkCtx); err != nil {
return err
}
}

if k.IsPeriodLastBlock(sdkCtx, params.VotePeriod) {
if util.IsPeriodLastBlock(sdkCtx, params.VotePeriod) {
if k.PriceFeeder.Oracle != nil && k.PriceFeeder.AppConfig.Enable {
// Update price feeder oracle with latest params.
k.PriceFeeder.Oracle.ParamCache.UpdateParamCache(sdkCtx.BlockHeight(), k.GetParams(sdkCtx), nil)
Expand All @@ -69,7 +69,7 @@ func EndBlocker(ctx context.Context, k keeper.Keeper) error {

// Slash oracle providers who missed voting over the threshold and reset
// miss counters of all validators at the last block of slash window.
if k.IsPeriodLastBlock(sdkCtx, params.SlashWindow) {
if util.IsPeriodLastBlock(sdkCtx, params.SlashWindow) {
k.SlashAndResetMissCounters(sdkCtx)
}
k.PruneAllPrices(sdkCtx)
Expand Down Expand Up @@ -145,12 +145,12 @@ func CalcPrices(ctx sdk.Context, params types.Params, k keeper.Keeper) error {
return err
}

if k.IsPeriodLastBlock(ctx, params.HistoricStampPeriod) {
if util.IsPeriodLastBlock(ctx, params.HistoricStampPeriod) {
k.AddHistoricPrice(ctx, ballotDenom.Denom, exchangeRate)
}

// Calculate and stamp median/median deviation if median stamp period has passed
if k.IsPeriodLastBlock(ctx, params.MedianStampPeriod) {
if util.IsPeriodLastBlock(ctx, params.MedianStampPeriod) {
if err = k.CalcAndSetHistoricMedian(ctx, ballotDenom.Denom); err != nil {
return err
}
Expand Down
9 changes: 2 additions & 7 deletions x/oracle/keeper/end_blocker.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ func (k *Keeper) PruneAllPrices(ctx sdk.Context) {
params := k.GetParams(ctx)
blockHeight := util.SafeInt64ToUint64(ctx.BlockHeight())

if k.IsPeriodLastBlock(ctx, params.HistoricStampPeriod) {
if util.IsPeriodLastBlock(ctx, params.HistoricStampPeriod) {
pruneHistoricPeriod := params.HistoricStampPeriod * params.MaximumPriceStamps
if pruneHistoricPeriod < blockHeight {
k.PruneHistoricPricesBeforeBlock(ctx, blockHeight-pruneHistoricPeriod)
}

if k.IsPeriodLastBlock(ctx, params.MedianStampPeriod) {
if util.IsPeriodLastBlock(ctx, params.MedianStampPeriod) {
pruneMedianPeriod := params.MedianStampPeriod * params.MaximumMedianStamps
if pruneMedianPeriod < blockHeight {
k.PruneMediansBeforeBlock(ctx, blockHeight-pruneMedianPeriod)
Expand All @@ -28,11 +28,6 @@ func (k *Keeper) PruneAllPrices(ctx sdk.Context) {
}
}

// IsPeriodLastBlock returns true if we are at the last block of the period
func (k *Keeper) IsPeriodLastBlock(ctx sdk.Context, blocksPerPeriod uint64) bool {
return (util.SafeInt64ToUint64(ctx.BlockHeight())+1)%blocksPerPeriod == 0
}

// RecordEndBlockMetrics records miss counter and price metrics at the end of the block
func (k *Keeper) RecordEndBlockMetrics(ctx sdk.Context) {
if !k.telemetryEnabled {
Expand Down
17 changes: 16 additions & 1 deletion x/symbiotic/abci.go
Original file line number Diff line number Diff line change
@@ -1,12 +1,27 @@
package symbiotic

import (
"context"

sdk "github.com/cosmos/cosmos-sdk/types"

"github.com/ojo-network/ojo/util"
"github.com/ojo-network/ojo/x/symbiotic/keeper"
)

// EndBlocker is called at the end of every block
func EndBlocker(_ sdk.Context, _ keeper.Keeper) error {
func EndBlocker(ctx context.Context, k keeper.Keeper) error {
sdkCtx := sdk.UnwrapSDKContext(ctx)
params := k.GetParams(sdkCtx)
blockHeight := util.SafeInt64ToUint64(sdkCtx.BlockHeight())
syncPeriod := util.SafeInt64ToUint64(params.SymbioticSyncPeriod)

if util.IsPeriodLastBlock(sdkCtx, syncPeriod) {
prunePeriod := params.MaximumCachedBlockHashes * syncPeriod
if prunePeriod < blockHeight {
k.PruneBlockHashesBeforeBlock(sdkCtx, blockHeight-prunePeriod)
}
}

return nil
}
40 changes: 32 additions & 8 deletions x/symbiotic/keeper/keeper.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,18 +73,42 @@ func (k Keeper) GetCachedBlockHash(
return cachedBlockHash, nil
}

func (k Keeper) GetAllCachedBlockHashes(
func (k Keeper) IterateAllCachedBlockHashes(
ctx sdk.Context,
) []types.CachedBlockHash {
handler func(types.CachedBlockHash) bool,
) {
store := ctx.KVStore(k.storeKey)
iterator := storetypes.KVStorePrefixIterator(store, types.CachedBlockHashPrefix)
defer iterator.Close()
iter := storetypes.KVStorePrefixIterator(store, types.CachedBlockHashPrefix)
defer iter.Close()

cachedBlockHashes := []types.CachedBlockHash{}
for ; iterator.Valid(); iterator.Next() {
for ; iter.Valid(); iter.Next() {
cachedBlockHash := types.CachedBlockHash{}
k.cdc.MustUnmarshal(iterator.Value(), &cachedBlockHash)
cachedBlockHashes = append(cachedBlockHashes, cachedBlockHash)
k.cdc.MustUnmarshal(iter.Value(), &cachedBlockHash)
if handler(cachedBlockHash) {
break
}
}
}

func (k Keeper) GetAllCachedBlockHashes(
ctx sdk.Context,
) []types.CachedBlockHash {
cachedBlockHashes := []types.CachedBlockHash{}
k.IterateAllCachedBlockHashes(ctx, func(cachedBlockHash types.CachedBlockHash) (stop bool) {
cachedBlockHashes = append(cachedBlockHashes, cachedBlockHash)
return false
})
return cachedBlockHashes
}

func (k Keeper) PruneBlockHashesBeforeBlock(
ctx sdk.Context,
blockNum uint64,
) {
k.IterateAllCachedBlockHashes(ctx, func(cachedBlockHash types.CachedBlockHash) (stop bool) {
if cachedBlockHash.Height <= int64(blockNum) {
k.DeleteCachedBlockHash(ctx, cachedBlockHash)
}
return false
})
}
67 changes: 49 additions & 18 deletions x/symbiotic/types/symbiotic.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 84eeacd

Please sign in to comment.