Aleksey Savchuk
d4bec24c9f
All checks were successful
DCO action / DCO (pull_request) Successful in 1m2s
Tests and linters / Run gofumpt (pull_request) Successful in 1m9s
Vulncheck / Vulncheck (pull_request) Successful in 1m31s
Pre-commit hooks / Pre-commit (pull_request) Successful in 2m6s
Build / Build Components (pull_request) Successful in 2m14s
Tests and linters / gopls check (pull_request) Successful in 2m35s
Tests and linters / Staticcheck (pull_request) Successful in 2m42s
Tests and linters / Lint (pull_request) Successful in 3m32s
Tests and linters / Tests (pull_request) Successful in 4m10s
Tests and linters / Tests with -race (pull_request) Successful in 5m32s
Signed-off-by: Aleksey Savchuk <a.savchuk@yadro.com>
134 lines
3.1 KiB
Go
134 lines
3.1 KiB
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"flag"
|
|
"fmt"
|
|
"os"
|
|
"sync"
|
|
"sync/atomic"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/internal/logs"
|
|
irMetrics "git.frostfs.info/TrueCloudLab/frostfs-node/internal/metrics"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/misc"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/innerring"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/util/logger"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/util/sdnotify"
|
|
"github.com/spf13/viper"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
const (
|
|
// ErrorReturnCode returns when application crashed at initialization stage.
|
|
ErrorReturnCode = 1
|
|
|
|
// SuccessReturnCode returns when application closed without panic.
|
|
SuccessReturnCode = 0
|
|
|
|
EnvPrefix = "FROSTFS_IR"
|
|
)
|
|
|
|
var (
|
|
wg = new(sync.WaitGroup)
|
|
intErr = make(chan error) // internal inner ring errors
|
|
logPrm = new(logger.Prm)
|
|
innerRing *innerring.Server
|
|
pprofCmp *pprofComponent
|
|
metricsCmp *httpComponent
|
|
log *logger.Logger
|
|
cfg *viper.Viper
|
|
configFile *string
|
|
configDir *string
|
|
cmode = &atomic.Bool{}
|
|
audit = &atomic.Bool{}
|
|
)
|
|
|
|
func exitErr(err error) {
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
os.Exit(ErrorReturnCode)
|
|
}
|
|
}
|
|
|
|
func main() {
|
|
configFile = flag.String("config", "", "path to config")
|
|
configDir = flag.String("config-dir", "", "path to config directory")
|
|
versionFlag := flag.Bool("version", false, "frostfs-ir node version")
|
|
flag.Parse()
|
|
|
|
if *versionFlag {
|
|
fmt.Print(misc.BuildInfo("FrostFS Inner Ring node"))
|
|
|
|
os.Exit(SuccessReturnCode)
|
|
}
|
|
|
|
var err error
|
|
cfg, err = newConfig()
|
|
exitErr(err)
|
|
|
|
cmode.Store(cfg.GetBool("node.kludge_compatibility_mode"))
|
|
|
|
metrics := irMetrics.NewInnerRingMetrics()
|
|
|
|
err = logPrm.SetLevelString(
|
|
cfg.GetString("logger.level"),
|
|
)
|
|
exitErr(err)
|
|
err = logPrm.SetDestination(
|
|
cfg.GetString("logger.destination"),
|
|
)
|
|
exitErr(err)
|
|
logPrm.SamplingHook = metrics.LogMetrics().GetSamplingHook()
|
|
logPrm.PrependTimestamp = cfg.GetBool("logger.timestamp")
|
|
|
|
log, err = logger.NewLogger(logPrm)
|
|
exitErr(err)
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
pprofCmp = newPprofComponent()
|
|
pprofCmp.init()
|
|
|
|
metricsCmp = newMetricsComponent()
|
|
metricsCmp.init()
|
|
audit.Store(cfg.GetBool("audit.enabled"))
|
|
|
|
innerRing, err = innerring.New(ctx, log, cfg, intErr, metrics, cmode, audit)
|
|
exitErr(err)
|
|
|
|
pprofCmp.start()
|
|
metricsCmp.start()
|
|
|
|
// start inner ring
|
|
err = innerRing.Start(ctx, intErr)
|
|
exitErr(err)
|
|
|
|
log.Info(logs.CommonApplicationStarted,
|
|
zap.String("version", misc.Version))
|
|
|
|
watchForSignal(cancel)
|
|
|
|
<-ctx.Done() // graceful shutdown
|
|
log.Debug(logs.FrostFSNodeWaitingForAllProcessesToStop)
|
|
wg.Wait()
|
|
|
|
log.Info(logs.FrostFSIRApplicationStopped)
|
|
}
|
|
|
|
func shutdown() {
|
|
innerRing.Stop()
|
|
if err := metricsCmp.shutdown(); err != nil {
|
|
log.Debug(logs.FrostFSIRCouldNotShutdownHTTPServer,
|
|
zap.String("error", err.Error()),
|
|
)
|
|
}
|
|
if err := pprofCmp.shutdown(); err != nil {
|
|
log.Debug(logs.FrostFSIRCouldNotShutdownHTTPServer,
|
|
zap.String("error", err.Error()),
|
|
)
|
|
}
|
|
|
|
if err := sdnotify.ClearStatus(); err != nil {
|
|
log.Error(logs.FailedToReportStatusToSystemd, zap.Error(err))
|
|
}
|
|
}
|