Alexander Chuprov
033eaf77e1
All checks were successful
Build / Build Components (1.20) (pull_request) Successful in 3m52s
Build / Build Components (1.19) (pull_request) Successful in 4m1s
ci/woodpecker/pr/pre-commit Pipeline was successful
Tests and linters / Tests with -race (pull_request) Successful in 5m36s
Tests and linters / Tests (1.20) (pull_request) Successful in 5m55s
Tests and linters / Lint (pull_request) Successful in 14m40s
Tests and linters / Tests (1.19) (pull_request) Successful in 15m29s
ci/woodpecker/push/pre-commit Pipeline was successful
Standardize the alias of the import frostfs-sdk-go/object as objectSDK. Signed-off-by: Alexander Chuprov <a.chuprov@yadro.com>
68 lines
1.4 KiB
Go
68 lines
1.4 KiB
Go
package deletesvc
|
|
|
|
import (
|
|
"context"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/internal/logs"
|
|
objectSDK "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object"
|
|
oid "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object/id"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
func (exec *execCtx) executeLocal(ctx context.Context) {
|
|
exec.log.Debug(logs.DeleteFormingTombstoneStructure)
|
|
|
|
ok := exec.formTombstone(ctx)
|
|
if !ok {
|
|
return
|
|
}
|
|
|
|
exec.log.Debug(logs.DeleteTombstoneStructureSuccessfullyFormedSaving)
|
|
|
|
exec.saveTombstone(ctx)
|
|
}
|
|
|
|
func (exec *execCtx) formTombstone(ctx context.Context) (ok bool) {
|
|
tsLifetime, err := exec.svc.netInfo.TombstoneLifetime()
|
|
if err != nil {
|
|
exec.status = statusUndefined
|
|
exec.err = err
|
|
|
|
exec.log.Debug(logs.DeleteCouldNotReadTombstoneLifetimeConfig,
|
|
zap.String("error", err.Error()),
|
|
)
|
|
|
|
return false
|
|
}
|
|
|
|
exec.tombstone = objectSDK.NewTombstone()
|
|
exec.tombstone.SetExpirationEpoch(
|
|
exec.svc.netInfo.CurrentEpoch() + tsLifetime,
|
|
)
|
|
exec.addMembers([]oid.ID{exec.address().Object()})
|
|
|
|
exec.log.Debug(logs.DeleteFormingSplitInfo)
|
|
|
|
ok = exec.formSplitInfo(ctx)
|
|
if !ok {
|
|
return
|
|
}
|
|
|
|
exec.log.Debug(logs.DeleteSplitInfoSuccessfullyFormedCollectingMembers)
|
|
|
|
exec.tombstone.SetSplitID(exec.splitInfo.SplitID())
|
|
|
|
ok = exec.collectMembers(ctx)
|
|
if !ok {
|
|
return
|
|
}
|
|
|
|
exec.log.Debug(logs.DeleteMembersSuccessfullyCollected)
|
|
|
|
ok = exec.initTombstoneObject()
|
|
if !ok {
|
|
return
|
|
}
|
|
|
|
return true
|
|
}
|