All checks were successful
DCO action / DCO (pull_request) Successful in 2m27s
Vulncheck / Vulncheck (pull_request) Successful in 2m7s
Build / Build Components (1.20) (pull_request) Successful in 2m44s
Tests and linters / Staticcheck (pull_request) Successful in 3m18s
Tests and linters / Tests (1.21) (pull_request) Successful in 5m0s
Tests and linters / Tests with -race (pull_request) Successful in 5m40s
Build / Build Components (1.21) (pull_request) Successful in 12m49s
Tests and linters / Lint (pull_request) Successful in 12m57s
Tests and linters / Tests (1.20) (pull_request) Successful in 2m8s
Use special flag to select storages by storage ID. Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
61 lines
1.6 KiB
Go
61 lines
1.6 KiB
Go
package blobstor
|
|
|
|
import (
|
|
"context"
|
|
"encoding/hex"
|
|
"time"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/internal/logs"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/blobstor/common"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-observability/tracing"
|
|
"go.opentelemetry.io/otel/attribute"
|
|
"go.opentelemetry.io/otel/trace"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
// Exists checks if the object is presented in BLOB storage.
|
|
//
|
|
// Returns any error encountered that did not allow
|
|
// to completely check object existence.
|
|
func (b *BlobStor) Exists(ctx context.Context, prm common.ExistsPrm) (common.ExistsRes, error) {
|
|
var (
|
|
exists = false
|
|
startedAt = time.Now()
|
|
)
|
|
defer func() {
|
|
b.metrics.Exists(time.Since(startedAt), exists, prm.StorageID != nil)
|
|
}()
|
|
|
|
ctx, span := tracing.StartSpanFromContext(ctx, "BlobStor.Exists",
|
|
trace.WithAttributes(
|
|
attribute.String("address", prm.Address.EncodeToString()),
|
|
attribute.String("storage_id", hex.EncodeToString(prm.StorageID)),
|
|
))
|
|
defer span.End()
|
|
|
|
b.modeMtx.RLock()
|
|
defer b.modeMtx.RUnlock()
|
|
|
|
var errors []error
|
|
for _, storage := range b.selectStorages(prm.StorageID) {
|
|
res, err := storage.Exists(ctx, prm)
|
|
if err == nil && res.Exists {
|
|
exists = true
|
|
return res, nil
|
|
} else if err != nil {
|
|
errors = append(errors, err)
|
|
}
|
|
}
|
|
|
|
if len(errors) == 0 {
|
|
return common.ExistsRes{}, nil
|
|
}
|
|
|
|
for _, err := range errors[:len(errors)-1] {
|
|
b.log.Warn(logs.BlobstorErrorOccurredDuringObjectExistenceChecking,
|
|
zap.Stringer("address", prm.Address),
|
|
zap.String("error", err.Error()))
|
|
}
|
|
|
|
return common.ExistsRes{}, errors[len(errors)-1]
|
|
}
|