Dmitrii Stepanov
436c9f5558
All checks were successful
Vulncheck / Vulncheck (pull_request) Successful in 1m43s
DCO action / DCO (pull_request) Successful in 2m53s
Build / Build Components (1.21) (pull_request) Successful in 4m6s
Build / Build Components (1.22) (pull_request) Successful in 4m31s
Tests and linters / gopls check (pull_request) Successful in 4m57s
Tests and linters / Staticcheck (pull_request) Successful in 6m14s
Tests and linters / Lint (pull_request) Successful in 6m42s
Pre-commit hooks / Pre-commit (pull_request) Successful in 9m19s
Tests and linters / Tests (1.21) (pull_request) Successful in 10m15s
Tests and linters / Tests (1.22) (pull_request) Successful in 10m36s
Tests and linters / Tests with -race (pull_request) Successful in 10m36s
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
47 lines
1.4 KiB
Go
47 lines
1.4 KiB
Go
package replicator
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/internal/logs"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/engine"
|
|
tracingPkg "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/tracing"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-observability/tracing"
|
|
"go.opentelemetry.io/otel/attribute"
|
|
"go.opentelemetry.io/otel/trace"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
var errObjectNotDefined = errors.New("object is not defined")
|
|
|
|
func (p *Replicator) HandleLocalPutTask(ctx context.Context, task Task) {
|
|
p.metrics.IncInFlightRequest()
|
|
defer p.metrics.DecInFlightRequest()
|
|
defer func() {
|
|
p.log.Debug(logs.ReplicatorFinishWork, zap.String("type", "pull"))
|
|
}()
|
|
|
|
ctx, span := tracing.StartSpanFromContext(ctx, "Replicator.HandleLocalPutTask",
|
|
trace.WithAttributes(
|
|
attribute.Stringer("address", task.Addr),
|
|
attribute.Int("nodes_count", len(task.Nodes)),
|
|
))
|
|
defer span.End()
|
|
|
|
if task.Obj == nil {
|
|
p.log.Error(logs.ReplicatorCouldNotPutObjectToLocalStorage,
|
|
zap.Stringer("object", task.Addr),
|
|
zap.Error(errObjectNotDefined),
|
|
zap.String("trace_id", tracingPkg.GetTraceID(ctx)))
|
|
return
|
|
}
|
|
|
|
err := engine.Put(ctx, p.localStorage, task.Obj)
|
|
if err != nil {
|
|
p.log.Error(logs.ReplicatorCouldNotPutObjectToLocalStorage,
|
|
zap.Stringer("object", task.Addr),
|
|
zap.Error(err),
|
|
zap.String("trace_id", tracingPkg.GetTraceID(ctx)))
|
|
}
|
|
}
|