2022-05-18 16:12:54 +00:00
|
|
|
// VulcanizeDB
|
|
|
|
// Copyright © 2022 Vulcanize
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2022-04-19 21:09:59 +00:00
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
2022-05-19 13:46:38 +00:00
|
|
|
"context"
|
2022-05-24 20:18:55 +00:00
|
|
|
"fmt"
|
2022-05-19 13:46:38 +00:00
|
|
|
"os"
|
2022-05-25 14:19:29 +00:00
|
|
|
"strconv"
|
2022-04-19 21:09:59 +00:00
|
|
|
|
2022-05-19 13:46:38 +00:00
|
|
|
log "github.com/sirupsen/logrus"
|
2022-04-19 21:09:59 +00:00
|
|
|
"github.com/spf13/cobra"
|
2022-05-24 20:18:55 +00:00
|
|
|
"github.com/spf13/viper"
|
2022-05-19 13:46:38 +00:00
|
|
|
"github.com/vulcanize/ipld-ethcl-indexer/internal/boot"
|
2022-05-24 20:18:55 +00:00
|
|
|
"github.com/vulcanize/ipld-ethcl-indexer/internal/shutdown"
|
2022-05-19 13:46:38 +00:00
|
|
|
"github.com/vulcanize/ipld-ethcl-indexer/pkg/database/sql"
|
|
|
|
"github.com/vulcanize/ipld-ethcl-indexer/pkg/loghelper"
|
2022-05-24 20:18:55 +00:00
|
|
|
"golang.org/x/sync/errgroup"
|
2022-04-19 21:09:59 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// historicCmd represents the historic command
|
|
|
|
var historicCmd = &cobra.Command{
|
|
|
|
Use: "historic",
|
2022-04-22 12:31:57 +00:00
|
|
|
Short: "Capture the historic blocks and states.",
|
|
|
|
Long: `Capture the historic blocks and states.`,
|
2022-04-19 21:09:59 +00:00
|
|
|
Run: func(cmd *cobra.Command, args []string) {
|
2022-05-19 13:46:38 +00:00
|
|
|
startHistoricProcessing()
|
2022-04-19 21:09:59 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2022-05-19 13:46:38 +00:00
|
|
|
// Start the application to process historical slots.
|
|
|
|
func startHistoricProcessing() {
|
|
|
|
// Boot the application
|
|
|
|
log.Info("Starting the application in head tracking mode.")
|
|
|
|
ctx := context.Background()
|
|
|
|
|
2022-05-24 20:18:55 +00:00
|
|
|
Bc, Db, err := boot.BootApplicationWithRetry(ctx, viper.GetString("db.address"), viper.GetInt("db.port"), viper.GetString("db.name"), viper.GetString("db.username"), viper.GetString("db.password"), viper.GetString("db.driver"),
|
|
|
|
viper.GetString("bc.address"), viper.GetInt("bc.port"), viper.GetString("bc.connectionProtocol"), viper.GetString("bc.type"), viper.GetInt("bc.bootRetryInterval"), viper.GetInt("bc.bootMaxRetry"),
|
2022-06-06 13:02:43 +00:00
|
|
|
viper.GetInt("kg.increment"), "historic", viper.GetBool("t.skipSync"), viper.GetInt("bc.uniqueNodeIdentifier"), viper.GetBool("bc.checkDb"))
|
2022-05-19 13:46:38 +00:00
|
|
|
if err != nil {
|
2022-05-24 20:18:55 +00:00
|
|
|
StopApplicationPreBoot(err, Db)
|
|
|
|
}
|
|
|
|
|
2022-05-25 14:19:29 +00:00
|
|
|
if viper.GetBool("pm.metrics") {
|
|
|
|
addr := viper.GetString("pm.address") + ":" + strconv.Itoa(viper.GetInt("pm.port"))
|
|
|
|
serveProm(addr)
|
|
|
|
}
|
|
|
|
|
2022-05-24 20:18:55 +00:00
|
|
|
errG, _ := errgroup.WithContext(context.Background())
|
|
|
|
|
|
|
|
errG.Go(func() error {
|
|
|
|
errs := Bc.CaptureHistoric(viper.GetInt("bc.maxHistoricProcessWorker"))
|
|
|
|
if len(errs) != 0 {
|
|
|
|
if len(errs) != 0 {
|
|
|
|
log.WithFields(log.Fields{"errs": errs}).Error("All errors when processing historic events")
|
|
|
|
return fmt.Errorf("Application ended because there were too many error when attempting to process historic")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
if viper.GetBool("kg.processKnownGaps") {
|
|
|
|
go func() {
|
|
|
|
errG := new(errgroup.Group)
|
|
|
|
errG.Go(func() error {
|
|
|
|
errs := Bc.ProcessKnownGaps(viper.GetInt("kg.maxKnownGapsWorker"))
|
|
|
|
if len(errs) != 0 {
|
|
|
|
log.WithFields(log.Fields{"errs": errs}).Error("All errors when processing knownGaps")
|
|
|
|
return fmt.Errorf("Application ended because there were too many error when attempting to process knownGaps")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err := errG.Wait(); err != nil {
|
|
|
|
loghelper.LogError(err).Error("Error with knownGaps processing")
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Shutdown when the time is right.
|
2022-06-03 16:47:13 +00:00
|
|
|
err = shutdown.ShutdownHistoricProcessing(ctx, notifierCh, maxWaitSecondsShutdown, Db, Bc)
|
2022-05-24 20:18:55 +00:00
|
|
|
if err != nil {
|
|
|
|
loghelper.LogError(err).Error("Ungracefully Shutdown ipld-ethcl-indexer!")
|
|
|
|
} else {
|
|
|
|
log.Info("Gracefully shutdown ipld-ethcl-indexer")
|
2022-05-19 13:46:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-19 21:09:59 +00:00
|
|
|
func init() {
|
|
|
|
captureCmd.AddCommand(historicCmd)
|
|
|
|
|
|
|
|
// Here you will define your flags and configuration settings.
|
|
|
|
|
|
|
|
// Cobra supports Persistent Flags which will work for this command
|
|
|
|
// and all subcommands, e.g.:
|
|
|
|
// historicCmd.PersistentFlags().String("foo", "", "A help for foo")
|
|
|
|
|
|
|
|
// Cobra supports local flags which will only run when this command
|
|
|
|
// is called directly, e.g.:
|
|
|
|
// historicCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
|
|
|
|
}
|
2022-05-19 13:46:38 +00:00
|
|
|
|
|
|
|
// Stop the application during its initial boot phases.
|
|
|
|
func StopApplicationPreBoot(startErr error, db sql.Database) {
|
|
|
|
loghelper.LogError(startErr).Error("Unable to Start application")
|
|
|
|
if db != nil {
|
|
|
|
db.Close()
|
|
|
|
}
|
|
|
|
os.Exit(1)
|
|
|
|
}
|