Anton Nikiforov
108e4e07be
All checks were successful
DCO action / DCO (pull_request) Successful in 1m31s
Vulncheck / Vulncheck (pull_request) Successful in 1m32s
Pre-commit hooks / Pre-commit (pull_request) Successful in 2m12s
Tests and linters / Run gofumpt (pull_request) Successful in 2m21s
Build / Build Components (pull_request) Successful in 2m32s
Tests and linters / gopls check (pull_request) Successful in 2m36s
Tests and linters / Staticcheck (pull_request) Successful in 2m55s
Tests and linters / Tests with -race (pull_request) Successful in 3m26s
Tests and linters / Lint (pull_request) Successful in 3m31s
Tests and linters / Tests (pull_request) Successful in 3m40s
Signed-off-by: Anton Nikiforov <an.nikiforov@yadro.com>
41 lines
1.1 KiB
Go
41 lines
1.1 KiB
Go
package shard
|
|
|
|
import (
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/blobstor"
|
|
meta "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/metabase"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/pilorama"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/shard/mode"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/writecache"
|
|
)
|
|
|
|
// Info groups the information about Shard.
|
|
type Info struct {
|
|
// Identifier of the shard.
|
|
ID *ID
|
|
|
|
// Shard mode.
|
|
Mode mode.Mode
|
|
|
|
// True when evacuation is in progress.
|
|
EvacuationInProgress bool
|
|
|
|
// Information about the metabase.
|
|
MetaBaseInfo meta.Info
|
|
|
|
// Information about the BLOB storage.
|
|
BlobStorInfo blobstor.Info
|
|
|
|
// Information about the Write Cache.
|
|
WriteCacheInfo writecache.Info
|
|
|
|
// ErrorCount contains amount of errors occurred in shard operations.
|
|
ErrorCount uint32
|
|
|
|
// PiloramaInfo contains information about trees stored on this shard.
|
|
PiloramaInfo pilorama.Info
|
|
}
|
|
|
|
// DumpInfo returns information about the Shard.
|
|
func (s *Shard) DumpInfo() Info {
|
|
return s.info
|
|
}
|