Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Valnodes forceprune #1262

Merged
merged 9 commits into from
Apr 22, 2022
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
152 changes: 152 additions & 0 deletions cmd/osmosisd/cmd/forceprune.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,152 @@
package cmd

// DONTCOVER

import (
"github.com/spf13/cobra"
"fmt"
"strconv"

"github.com/syndtr/goleveldb/leveldb"
"github.com/syndtr/goleveldb/leveldb/opt"
"github.com/syndtr/goleveldb/leveldb/util"
tmstore "github.com/tendermint/tendermint/store"
tmdb "github.com/tendermint/tm-db"

"os/exec"

"github.com/cosmos/cosmos-sdk/client"
"github.com/tendermint/tendermint/config"
)

var fheight = "full_height"
var mheight = "min_height"
const batchMaxSize = 1000
moniya12 marked this conversation as resolved.
Show resolved Hide resolved

// get cmd to convert any bech32 address to an osmo prefix.
func forceprune() *cobra.Command {
cmd := &cobra.Command{
Use: "forceprune",
Short: "Example osmosisd forceprune -f 188000 -m 1000, which would keep blockchain and state data of last 188000 blocks (approximately 2 weeks) and ABCI responses of last 1000 blocks.",
Long: "Forceprune options prunes and compacts blockstore.db and state.db. One needs to shut down chain before running forceprune. By default it keeps last 188000 blocks (approximately 2 weeks of data) blockstore and state db (validator and consensus information) and 1000 blocks of abci responses from state.db. Everything beyond these heights in blockstore and state.db is pruned. ABCI Responses are stored in index db and so redundant especially if one is running pruned nodes. As a result we are removing ABCI data from state.db aggressively by default. One can override height for blockstore.db and state.db by using -f option and for abci response by using -m option. Example osmosisd forceprune -f 188000 -m 1000.",
RunE: func(cmd *cobra.Command, args []string) error {
full_height_flag, err := cmd.Flags().GetString(fheight)
if err != nil {
return err
}

min_height_flag, err := cmd.Flags().GetString(mheight)
if err != nil {
return err
}

clientCtx := client.GetClientContextFromCmd(cmd)
conf := config.DefaultConfig()
db_path := string(clientCtx.HomeDir) + "/" + conf.DBPath

cmdr := exec.Command("osmosisd", "status")
err = cmdr.Run()

if err == nil {
// continue only if throws errror
return nil
}

full_height, err := strconv.ParseInt(full_height_flag, 10, 64)
if err != nil {
return err
}

min_height, err := strconv.ParseInt(min_height_flag, 10, 64)
if err != nil {
return err
}

opts := opt.Options{
DisableSeeksCompaction: true,
}

db_bs, err := tmdb.NewGoLevelDBWithOpts("blockstore", db_path, &opts)
if err != nil {
return err
}

bs := tmstore.NewBlockStore(db_bs)
start_height := bs.Base()
current_height := bs.Height()

fmt.Println("Pruning Block Store ...")
prunedBlocks, err := bs.PruneBlocks(current_height - full_height)
if err != nil {
return err
}
fmt.Println("Pruned Block Store ...", prunedBlocks)
db_bs.Close()
moniya12 marked this conversation as resolved.
Show resolved Hide resolved

fmt.Println("Compacting Block Store ...")

db, err := leveldb.OpenFile(db_path+"/blockstore.db", &opts)
defer db.Close()
if err != nil {
return err
}
if err = db.CompactRange(*util.BytesPrefix([]byte{})); err != nil {
return err
}

db, err = leveldb.OpenFile(db_path+"/state.db", &opts)
if err != nil {
return err
}
stateDBKeys := []string{"validatorsKey:", "consensusParamsKey:", "abciResponsesKey:"}
moniya12 marked this conversation as resolved.
Show resolved Hide resolved
fmt.Println("Pruning State Store ...")
for i, s := range stateDBKeys {
fmt.Println(i, s)

retain_height := int64(0)
if s == "abciResponsesKey:" {
moniya12 marked this conversation as resolved.
Show resolved Hide resolved
retain_height = current_height - min_height
} else {
retain_height = current_height - full_height
}

batch := new(leveldb.Batch)
curBatchSize := uint64(0)

fmt.Println(start_height, current_height, retain_height)

for c := start_height; c < retain_height; c++ {
batch.Delete([]byte(s + strconv.FormatInt(c, 10)))
curBatchSize++

if curBatchSize%batchMaxSize == 0 && curBatchSize > 0 {
err := db.Write(batch, nil)
if err != nil {
return err
}
batch.Reset()
batch = new(leveldb.Batch)
}
}

err := db.Write(batch, nil)
if err != nil {
return err
}
batch.Reset()
}

fmt.Println("Compacting State Store ...")
if err = db.CompactRange(*util.BytesPrefix([]byte{})); err != nil {
return err
}
fmt.Println("Done ...")

return nil
},
}

cmd.Flags().StringP(fheight, "f", "188000", "Full height to chop to")
cmd.Flags().StringP(mheight, "m", "1000", "Min height for ABCI to chop to")
p0mvn marked this conversation as resolved.
Show resolved Hide resolved
return cmd
}
1 change: 1 addition & 0 deletions cmd/osmosisd/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ func initRootCmd(rootCmd *cobra.Command, encodingConfig params.EncodingConfig) {

rootCmd.AddCommand(
// genutilcli.InitCmd(osmosis.ModuleBasics, osmosis.DefaultNodeHome),
forceprune(),
InitCmd(osmosis.ModuleBasics, osmosis.DefaultNodeHome),
genutilcli.CollectGenTxsCmd(banktypes.GenesisBalancesIterator{}, osmosis.DefaultNodeHome),
genutilcli.MigrateGenesisCmd(),
Expand Down