-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
neofs-lens: storage status new command (#2591)
Closes #2550.
- Loading branch information
Showing
10 changed files
with
294 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
package storage | ||
|
||
import ( | ||
common "github.com/nspcc-dev/neofs-node/cmd/neofs-lens/internal" | ||
oid "github.com/nspcc-dev/neofs-sdk-go/object/id" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
var storageStatusObjCMD = &cobra.Command{ | ||
Use: "status", | ||
Short: "Get object from the NeoFS node's storage snapshot", | ||
Long: "Get object from the NeoFS node's storage snapshot", | ||
Args: cobra.NoArgs, | ||
Run: statusObject, | ||
} | ||
|
||
func init() { | ||
common.AddAddressFlag(storageStatusObjCMD, &vAddress) | ||
common.AddConfigFileFlag(storageStatusObjCMD, &vConfig) | ||
} | ||
|
||
func statusObject(cmd *cobra.Command, _ []string) { | ||
var addr oid.Address | ||
|
||
err := addr.DecodeString(vAddress) | ||
common.ExitOnErr(cmd, common.Errf("invalid address argument: %w", err)) | ||
|
||
storage := openEngine(cmd) | ||
defer storage.Close() | ||
status, err := storage.ObjectStatus(addr) | ||
common.ExitOnErr(cmd, common.Errf("could not fetch object: %w", err)) | ||
|
||
common.PrintStorageObjectStatus(cmd, status) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
package blobstor | ||
|
||
import ( | ||
"github.com/nspcc-dev/neofs-node/pkg/local_object_storage/blobstor/common" | ||
oid "github.com/nspcc-dev/neofs-sdk-go/object/id" | ||
) | ||
|
||
// ObjectSubstorageStatus represents the status of the object in the Blob | ||
// storage, containing the type and path of the storage and an error if it | ||
// occurred. | ||
type ObjectSubstorageStatus struct { | ||
Type string | ||
Path string | ||
Error error | ||
} | ||
|
||
// ObjectStatus represents the status of the object in the Blob storage. | ||
type ObjectStatus struct { | ||
Substorages []ObjectSubstorageStatus | ||
} | ||
|
||
// ObjectStatus returns the status of the object in the Blob storage. It contains | ||
// status of the object in all blob substorages. | ||
func (b *BlobStor) ObjectStatus(address oid.Address) (ObjectStatus, error) { | ||
b.modeMtx.RLock() | ||
defer b.modeMtx.RUnlock() | ||
res := ObjectStatus{ | ||
Substorages: []ObjectSubstorageStatus{}, | ||
} | ||
prm := common.GetPrm{ | ||
Address: address, | ||
} | ||
for i := range b.storage { | ||
_, err := b.storage[i].Storage.Get(prm) | ||
if err == nil { | ||
res.Substorages = append(res.Substorages, ObjectSubstorageStatus{ | ||
Type: b.storage[i].Storage.Type(), | ||
Path: b.storage[i].Storage.Path(), | ||
}) | ||
} | ||
} | ||
return res, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
package engine | ||
|
||
import ( | ||
"github.com/nspcc-dev/neofs-node/pkg/local_object_storage/shard" | ||
oid "github.com/nspcc-dev/neofs-sdk-go/object/id" | ||
) | ||
|
||
// ObjectShardStatus contains the status of the object in the Shard and Shard ID. | ||
type ObjectShardStatus struct { | ||
ID string | ||
Shard shard.ObjectStatus | ||
} | ||
|
||
// ObjectStatus represents the status of the object in the StorageEngine. | ||
type ObjectStatus struct { | ||
Shards []ObjectShardStatus | ||
} | ||
|
||
// ObjectStatus returns the status of the object in the StorageEngine. It contains status of the object in all shards. | ||
func (e *StorageEngine) ObjectStatus(address oid.Address) (ObjectStatus, error) { | ||
var res ObjectStatus | ||
var err error | ||
|
||
e.iterateOverSortedShards(address, func(_ int, sh hashedShard) (stop bool) { | ||
var shardStatus shard.ObjectStatus | ||
shardStatus, err = sh.ObjectStatus(address) | ||
id := *sh.ID() | ||
if err == nil { | ||
res.Shards = append(res.Shards, ObjectShardStatus{ | ||
ID: id.String(), | ||
Shard: shardStatus, | ||
}) | ||
} | ||
return err != nil | ||
}) | ||
return res, err | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
package meta | ||
|
||
import ( | ||
"github.com/nspcc-dev/neofs-node/pkg/local_object_storage/blobovnicza" | ||
oid "github.com/nspcc-dev/neofs-sdk-go/object/id" | ||
"go.etcd.io/bbolt" | ||
) | ||
|
||
// ObjectStatus represents the status of the object in the Metabase. | ||
type ObjectStatus struct { | ||
State []string | ||
Path string | ||
StorageID string | ||
Error error | ||
} | ||
|
||
// ObjectStatus returns the status of the object in the Metabase. It contains state, path and storageID. | ||
func (db *DB) ObjectStatus(address oid.Address) (ObjectStatus, error) { | ||
db.modeMtx.RLock() | ||
defer db.modeMtx.RUnlock() | ||
var res ObjectStatus | ||
if db.mode.NoMetabase() { | ||
return res, nil | ||
} | ||
|
||
storageID := StorageIDPrm{} | ||
storageID.SetAddress(address) | ||
resStorageID, err := db.StorageID(storageID) | ||
if id := resStorageID.StorageID(); id != nil { | ||
res.StorageID = blobovnicza.NewIDFromBytes(id).String() | ||
} else { | ||
return res, nil | ||
} | ||
|
||
err = db.boltDB.View(func(tx *bbolt.Tx) error { | ||
oID := address.Object() | ||
cID := address.Container() | ||
objKey := objectKey(address.Object(), make([]byte, objectKeySize)) | ||
key := make([]byte, bucketKeySize) | ||
|
||
if objectLocked(tx, cID, oID) { | ||
res.State = append(res.State, "LOCKED") | ||
} | ||
|
||
graveyardBkt := tx.Bucket(graveyardBucketName) | ||
garbageBkt := tx.Bucket(garbageBucketName) | ||
addrKey := addressKey(address, make([]byte, addressKeySize)) | ||
|
||
removedStatus := inGraveyardWithKey(addrKey, graveyardBkt, garbageBkt) | ||
|
||
if removedStatus != 0 && objectLocked(tx, cID, oID) || inBucket(tx, primaryBucketName(cID, key), objKey) || inBucket(tx, parentBucketName(cID, key), objKey) { | ||
res.State = append(res.State, "AVAILABLE") | ||
} | ||
if removedStatus == 1 { | ||
res.State = append(res.State, "GC MARKED") | ||
} | ||
if removedStatus == 2 { | ||
res.State = append(res.State, "IN GRAVEYARD") | ||
} | ||
return err | ||
}) | ||
res.Path = db.boltDB.Path() | ||
res.Error = err | ||
return res, err | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
package shard | ||
|
||
import ( | ||
"github.com/nspcc-dev/neofs-node/pkg/local_object_storage/blobstor" | ||
meta "github.com/nspcc-dev/neofs-node/pkg/local_object_storage/metabase" | ||
"github.com/nspcc-dev/neofs-node/pkg/local_object_storage/writecache" | ||
oid "github.com/nspcc-dev/neofs-sdk-go/object/id" | ||
) | ||
|
||
// ObjectStatus represents the status of an object in a storage system. It contains | ||
// information about the object's status in various sub-components such as Blob storage, | ||
// Metabase, and Writecache. Additionally, it includes a slice of errors that may have | ||
// occurred at the object level. | ||
type ObjectStatus struct { | ||
Blob blobstor.ObjectStatus | ||
Metabase meta.ObjectStatus | ||
Writecache writecache.ObjectStatus | ||
Errors []error | ||
} | ||
|
||
// ObjectStatus returns the status of the object in the Shard. It contains status | ||
// of the object in Blob storage, Metabase and Writecache. | ||
func (s *Shard) ObjectStatus(address oid.Address) (ObjectStatus, error) { | ||
var res ObjectStatus | ||
var err error | ||
res.Blob, err = s.blobStor.ObjectStatus(address) | ||
if len(res.Blob.Substorages) != 0 { | ||
res.Errors = append(res.Errors, err) | ||
res.Metabase, err = s.metaBase.ObjectStatus(address) | ||
res.Errors = append(res.Errors, err) | ||
if s.hasWriteCache() { | ||
res.Writecache, err = s.writeCache.ObjectStatus(address) | ||
res.Errors = append(res.Errors, err) | ||
} | ||
} | ||
return res, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
package writecache | ||
|
||
import ( | ||
"github.com/nspcc-dev/neofs-node/pkg/local_object_storage/blobstor/common" | ||
oid "github.com/nspcc-dev/neofs-sdk-go/object/id" | ||
"github.com/pkg/errors" | ||
"go.etcd.io/bbolt" | ||
) | ||
|
||
// ObjectStatus represents the status of the object in the Writecache. | ||
type ObjectStatus struct { | ||
PathDB string | ||
PathFSTree string | ||
} | ||
|
||
// ObjectStatus returns the status of the object in the Writecache. It contains path to the DB and path to the FSTree. | ||
func (c *cache) ObjectStatus(address oid.Address) (ObjectStatus, error) { | ||
saddr := address.EncodeToString() | ||
var value []byte | ||
var res ObjectStatus | ||
|
||
err := c.db.View(func(tx *bbolt.Tx) error { | ||
b := tx.Bucket(defaultBucket) | ||
if b != nil { | ||
value = b.Get([]byte(saddr)) | ||
if value != nil { | ||
res.PathDB = c.db.Path() | ||
} | ||
} | ||
return errors.New("value not found") | ||
}) | ||
if err != nil { | ||
return res, err | ||
} | ||
_, err = c.fsTree.Get(common.GetPrm{Address: address}) | ||
if err == nil { | ||
res.PathFSTree = c.fsTree.Path() | ||
} | ||
return res, err | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters