frostfs-node/pkg/services/object/get/container.go
Dmitrii Stepanov cb6d097e0a
All checks were successful
DCO action / DCO (pull_request) Successful in 2m7s
Vulncheck / Vulncheck (pull_request) Successful in 2m21s
Build / Build Components (1.20) (pull_request) Successful in 3m43s
Build / Build Components (1.21) (pull_request) Successful in 3m38s
Tests and linters / Staticcheck (pull_request) Successful in 5m59s
Tests and linters / Tests (1.20) (pull_request) Successful in 6m26s
Tests and linters / Tests with -race (pull_request) Successful in 6m38s
Tests and linters / Lint (pull_request) Successful in 6m58s
Tests and linters / Tests (1.21) (pull_request) Successful in 3m8s
[#847] node: Drop/resolve TODO's
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
2023-12-07 11:42:29 +03:00

90 lines
1.5 KiB
Go

package getsvc
import (
"context"
"git.frostfs.info/TrueCloudLab/frostfs-node/internal/logs"
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/core/client"
"go.uber.org/zap"
)
func (r *request) executeOnContainer(ctx context.Context) {
if r.isLocal() {
r.log.Debug(logs.GetReturnResultDirectly)
return
}
lookupDepth := r.netmapLookupDepth()
r.log.Debug(logs.TryingToExecuteInContainer,
zap.Uint64("netmap lookup depth", lookupDepth),
)
// initialize epoch number
ok := r.initEpoch()
if !ok {
return
}
for {
if r.processCurrentEpoch(ctx) {
break
}
// check the maximum depth has been reached
if lookupDepth == 0 {
break
}
lookupDepth--
// go to the previous epoch
r.curProcEpoch--
}
}
func (r *request) processCurrentEpoch(ctx context.Context) bool {
r.log.Debug(logs.ProcessEpoch,
zap.Uint64("number", r.curProcEpoch),
)
traverser, ok := r.generateTraverser(r.address())
if !ok {
return true
}
ctx, cancel := context.WithCancel(ctx)
defer cancel()
r.status = statusUndefined
for {
addrs := traverser.Next()
if len(addrs) == 0 {
r.log.Debug(logs.NoMoreNodesAbortPlacementIteration)
return false
}
for i := range addrs {
select {
case <-ctx.Done():
r.log.Debug(logs.InterruptPlacementIterationByContext,
zap.Error(ctx.Err()),
)
return true
default:
}
var info client.NodeInfo
client.NodeInfoFromNetmapElement(&info, addrs[i])
if r.processNode(ctx, info) {
r.log.Debug(logs.GetCompletingTheOperation)
return true
}
}
}
}