From 2126235f0e1999da151bb02e54e3d424696e735b Mon Sep 17 00:00:00 2001 From: Leonard Lyubich Date: Fri, 8 Oct 2021 16:25:56 +0300 Subject: [PATCH] [#674] node: Configure size of per-shard worker pools Add `shard_pool_size` config to `storage` section. Set app default to 20. Pass the value to `WithShardPoolSize` option. Signed-off-by: Leonard Lyubich --- cmd/neofs-node/config.go | 5 ++++- cmd/neofs-node/config/engine/config.go | 22 ++++++++++++++++++++- cmd/neofs-node/config/engine/config_test.go | 8 +++++++- config/example/node.env | 1 + config/example/node.json | 1 + config/example/node.yaml | 1 + 6 files changed, 35 insertions(+), 3 deletions(-) diff --git a/cmd/neofs-node/config.go b/cmd/neofs-node/config.go index d43e0225..37c41899 100644 --- a/cmd/neofs-node/config.go +++ b/cmd/neofs-node/config.go @@ -318,7 +318,10 @@ func (c *cfg) LocalAddress() network.AddressGroup { func initLocalStorage(c *cfg) { initShardOptions(c) - engineOpts := []engine.Option{engine.WithLogger(c.log)} + engineOpts := []engine.Option{ + engine.WithLogger(c.log), + engine.WithShardPoolSize(engineconfig.ShardPoolSize(c.appCfg)), + } if c.metricsCollector != nil { engineOpts = append(engineOpts, engine.WithMetrics(c.metricsCollector)) } diff --git a/cmd/neofs-node/config/engine/config.go b/cmd/neofs-node/config/engine/config.go index 67571d1c..c2720454 100644 --- a/cmd/neofs-node/config/engine/config.go +++ b/cmd/neofs-node/config/engine/config.go @@ -7,13 +7,21 @@ import ( shardconfig "github.com/nspcc-dev/neofs-node/cmd/neofs-node/config/engine/shard" ) +const ( + subsection = "storage" + + // ShardPoolSizeDefault is a default value of routine pool size per-shard to + // process object PUT operations in storage engine. + ShardPoolSizeDefault = 20 +) + // IterateShards iterates over subsections ["0":"N") (N - "shard_num" value) // of "shard" subsection of "storage" section of c, wrap them into // shardconfig.Config and passes to f. // // Panics if N is not a positive number. func IterateShards(c *config.Config, f func(*shardconfig.Config)) { - c = c.Sub("storage") + c = c.Sub(subsection) num := config.Uint(c, "shard_num") if num == 0 { @@ -32,3 +40,15 @@ func IterateShards(c *config.Config, f func(*shardconfig.Config)) { f(sc) } } + +// ShardPoolSize returns value of "shard_pool_size" config parameter from "storage" section. +// +// Returns ShardPoolSizeDefault if value is not a positive number. +func ShardPoolSize(c *config.Config) uint32 { + v := config.Uint32Safe(c.Sub(subsection), "shard_pool_size") + if v > 0 { + return v + } + + return ShardPoolSizeDefault +} diff --git a/cmd/neofs-node/config/engine/config_test.go b/cmd/neofs-node/config/engine/config_test.go index e84f591b..3d77eb4c 100644 --- a/cmd/neofs-node/config/engine/config_test.go +++ b/cmd/neofs-node/config/engine/config_test.go @@ -14,9 +14,13 @@ import ( func TestEngineSection(t *testing.T) { t.Run("defaults", func(t *testing.T) { + empty := configtest.EmptyConfig() + require.Panics(t, func() { - engineconfig.IterateShards(configtest.EmptyConfig(), nil) + engineconfig.IterateShards(empty, nil) }) + + require.EqualValues(t, engineconfig.ShardPoolSizeDefault, engineconfig.ShardPoolSize(empty)) }) const path = "../../../../config/example/node" @@ -24,6 +28,8 @@ func TestEngineSection(t *testing.T) { var fileConfigTest = func(c *config.Config) { num := 0 + require.EqualValues(t, 15, engineconfig.ShardPoolSize(c)) + engineconfig.IterateShards(c, func(sc *shardconfig.Config) { defer func() { num++ diff --git a/config/example/node.env b/config/example/node.env index 54dfa298..b23c2d6c 100644 --- a/config/example/node.env +++ b/config/example/node.env @@ -68,6 +68,7 @@ NEOFS_OBJECT_PUT_POOL_SIZE_REMOTE=100 NEOFS_OBJECT_PUT_POOL_SIZE_LOCAL=101 # Storage engine section +NEOFS_STORAGE_SHARD_POOL_SIZE=15 NEOFS_STORAGE_SHARD_NUM=2 ## 0 shard ### Flag to refill Metabase from BlobStor diff --git a/config/example/node.json b/config/example/node.json index 31e7403b..df2288e0 100644 --- a/config/example/node.json +++ b/config/example/node.json @@ -102,6 +102,7 @@ } }, "storage": { + "shard_pool_size": 15, "shard_num": 2, "shard": { "0": { diff --git a/config/example/node.yaml b/config/example/node.yaml index 1117cedd..635f294d 100644 --- a/config/example/node.yaml +++ b/config/example/node.yaml @@ -88,6 +88,7 @@ object: pool_size_local: 101 # number of async workers for local PUT operations storage: + shard_pool_size: 15 # size of per-shard worker pools used for PUT operations shard_num: 2 # total number of shards shard: 0: