ipld-eth-beacon-indexer/cmd/head.go

64 lines
1.7 KiB
Go
Raw Normal View History

2022-04-19 21:09:59 +00:00
/*
Copyright © 2022 NAME HERE <EMAIL ADDRESS>
*/
package cmd
import (
"context"
log "github.com/sirupsen/logrus"
2022-04-19 21:09:59 +00:00
"github.com/spf13/cobra"
2022-05-12 19:44:05 +00:00
"github.com/spf13/viper"
"github.com/vulcanize/ipld-ethcl-indexer/internal/boot"
"github.com/vulcanize/ipld-ethcl-indexer/internal/shutdown"
"github.com/vulcanize/ipld-ethcl-indexer/pkg/loghelper"
2022-04-19 21:09:59 +00:00
)
2022-05-12 19:44:05 +00:00
var (
kgTableIncrement int
)
2022-04-19 21:09:59 +00:00
// headCmd represents the head command
var headCmd = &cobra.Command{
Use: "head",
Short: "Capture only the blocks and state at head.",
Long: `Capture only the blocks and state at head.`,
2022-04-19 21:09:59 +00:00
Run: func(cmd *cobra.Command, args []string) {
startHeadTracking()
2022-04-19 21:09:59 +00:00
},
}
// Start the application to track at head.
func startHeadTracking() {
// Boot the application
log.Info("Starting the application in head tracking mode.")
ctx := context.Background()
2022-04-27 18:01:59 +00:00
BC, DB, err := boot.BootApplicationWithRetry(ctx, dbAddress, dbPort, dbName, dbUsername, dbPassword, dbDriver, bcAddress, bcPort, bcConnectionProtocol)
if err != nil {
loghelper.LogError(err).Error("Unable to Start application")
}
// Capture head blocks
2022-05-12 19:44:05 +00:00
go BC.CaptureHead(kgTableIncrement)
// Shutdown when the time is right.
err = shutdown.ShutdownServices(ctx, notifierCh, maxWaitSecondsShutdown, DB, BC)
if err != nil {
loghelper.LogError(err).Error("Ungracefully Shutdown ipld-ethcl-indexer!")
} else {
log.Info("Gracefully shutdown ipld-ethcl-indexer")
}
}
2022-04-19 21:09:59 +00:00
func init() {
captureCmd.AddCommand(headCmd)
2022-05-12 19:44:05 +00:00
// Known Gaps specific
captureCmd.PersistentFlags().IntVarP(&kgTableIncrement, "kg.increment", "", 10000, "The max slots within a single entry to the known_gaps table.")
err := viper.BindPFlag("kg.increment", captureCmd.PersistentFlags().Lookup("kg.increment"))
exitErr(err)
2022-04-19 21:09:59 +00:00
}