All checks were successful
DCO action / DCO (pull_request) Successful in 47s
Vulncheck / Vulncheck (pull_request) Successful in 1m4s
Pre-commit hooks / Pre-commit (pull_request) Successful in 1m25s
Build / Build Components (pull_request) Successful in 1m53s
Tests and linters / Run gofumpt (pull_request) Successful in 2m43s
Tests and linters / Lint (pull_request) Successful in 3m13s
Tests and linters / Tests (pull_request) Successful in 3m24s
Tests and linters / gopls check (pull_request) Successful in 3m30s
Tests and linters / Staticcheck (pull_request) Successful in 3m33s
Tests and linters / Tests with -race (pull_request) Successful in 3m35s
Vulncheck / Vulncheck (push) Successful in 1m1s
Pre-commit hooks / Pre-commit (push) Successful in 1m27s
Build / Build Components (push) Successful in 1m58s
Tests and linters / Run gofumpt (push) Successful in 2m40s
Tests and linters / Staticcheck (push) Successful in 3m3s
Tests and linters / Lint (push) Successful in 3m7s
Tests and linters / Tests (push) Successful in 3m23s
Tests and linters / gopls check (push) Successful in 3m41s
Tests and linters / Tests with -race (push) Successful in 3m47s
OCI image / Build container images (push) Successful in 4m45s
After adding an ops limiter, shard's `put` pool is redundant. Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
74 lines
2.1 KiB
Go
74 lines
2.1 KiB
Go
package engineconfig
|
|
|
|
import (
|
|
"errors"
|
|
"strconv"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-node/config"
|
|
shardconfig "git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-node/config/engine/shard"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/shard/mode"
|
|
)
|
|
|
|
const (
|
|
subsection = "storage"
|
|
)
|
|
|
|
// ErrNoShardConfigured is returned when at least 1 shard is required but none are found.
|
|
var ErrNoShardConfigured = errors.New("no shard configured")
|
|
|
|
// IterateShards iterates over subsections of "shard" subsection of "storage" section of c,
|
|
// wrap them into shardconfig.Config and passes to f.
|
|
//
|
|
// Section names are expected to be consecutive integer numbers, starting from 0.
|
|
//
|
|
// Panics if N is not a positive number while shards are required.
|
|
func IterateShards(c *config.Config, required bool, f func(*shardconfig.Config) error) error {
|
|
c = c.Sub(subsection)
|
|
|
|
c = c.Sub("shard")
|
|
def := c.Sub("default")
|
|
|
|
alive := 0
|
|
i := uint64(0)
|
|
for ; ; i++ {
|
|
si := strconv.FormatUint(i, 10)
|
|
|
|
sc := shardconfig.From(
|
|
c.Sub(si),
|
|
)
|
|
|
|
if sc.Mode() == mode.Disabled {
|
|
continue
|
|
}
|
|
|
|
// Path for the blobstor can't be present in the default section, because different shards
|
|
// must have different paths, so if it is missing, the shard is not here.
|
|
// At the same time checking for "blobstor" section doesn't work proper
|
|
// with configuration via the environment.
|
|
if (*config.Config)(sc).Value("metabase.path") == nil {
|
|
break
|
|
}
|
|
(*config.Config)(sc).SetDefault(def)
|
|
|
|
if err := f(sc); err != nil {
|
|
return err
|
|
}
|
|
alive++
|
|
}
|
|
if alive == 0 && required {
|
|
return ErrNoShardConfigured
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// ShardErrorThreshold returns the value of "shard_ro_error_threshold" config parameter from "storage" section.
|
|
//
|
|
// Returns 0 if the the value is missing.
|
|
func ShardErrorThreshold(c *config.Config) uint32 {
|
|
return config.Uint32Safe(c.Sub(subsection), "shard_ro_error_threshold")
|
|
}
|
|
|
|
// EngineLowMemoryConsumption returns value of "lowmem" config parmeter from "storage" section.
|
|
func EngineLowMemoryConsumption(c *config.Config) bool {
|
|
return config.BoolSafe(c.Sub(subsection), "low_mem")
|
|
}
|