[#498] policer: Allow to set sleep duration between iterations
All checks were successful
ci/woodpecker/pr/pre-commit Pipeline was successful
Build / Build Components (1.19) (pull_request) Successful in 3m55s
Build / Build Components (1.20) (pull_request) Successful in 3m41s
Tests and linters / Tests (1.19) (pull_request) Successful in 3m16s
Tests and linters / Lint (pull_request) Successful in 7m20s
Tests and linters / Tests (1.20) (pull_request) Successful in 5m44s
Tests and linters / Tests with -race (pull_request) Successful in 20m41s

Speed up tests on CI.

Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
Evgenii Stratonikov 2023-07-06 18:29:16 +03:00
parent 5d836b9560
commit 80ac7a10d7
3 changed files with 7 additions and 2 deletions

View file

@ -76,7 +76,7 @@ type cfg struct {
batchSize, cacheSize uint32
rebalanceFreq, evictDuration time.Duration
rebalanceFreq, evictDuration, sleepDuration time.Duration
}
func defaultCfg() *cfg {
@ -85,6 +85,7 @@ func defaultCfg() *cfg {
batchSize: 10,
cacheSize: 1024, // 1024 * address size = 1024 * 64 = 64 MiB
rebalanceFreq: 1 * time.Second,
sleepDuration: 1 * time.Second,
evictDuration: 30 * time.Second,
}
}

View file

@ -6,6 +6,7 @@ import (
"errors"
"sort"
"testing"
"time"
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/core/container"
objectcore "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/core/object"
@ -279,6 +280,9 @@ func TestIteratorContract(t *testing.T) {
WithBuryFunc(buryFn),
WithPool(pool),
WithNodeLoader(constNodeLoader(0)),
func(c *cfg) {
c.sleepDuration = time.Millisecond
},
)
ctx, cancel := context.WithCancel(context.Background())

View file

@ -28,7 +28,7 @@ func (p *Policer) shardPolicyWorker(ctx context.Context) {
if err != nil {
if errors.Is(err, engine.ErrEndOfListing) {
p.keySpaceIterator.Rewind()
time.Sleep(time.Second) // finished whole cycle, sleep a bit
time.Sleep(p.sleepDuration) // finished whole cycle, sleep a bit
continue
}
p.log.Warn(logs.PolicerFailureAtObjectSelectForReplication, zap.Error(err))