diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e719b41b..aefd217c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ Changelog for NeoFS Node - Physical child object removal by GC (#1699) - Broadcasting helper objects (#1972) - `neofs-cli lock object`'s `lifetime` flag handling (#1972) +- Do not move write-cache in read-only mode for flushing (#1906) ### Removed ### Updated diff --git a/pkg/local_object_storage/shard/writecache.go b/pkg/local_object_storage/shard/writecache.go index c217ab913..7282f121c 100644 --- a/pkg/local_object_storage/shard/writecache.go +++ b/pkg/local_object_storage/shard/writecache.go @@ -2,8 +2,6 @@ package shard import ( "errors" - - "github.com/nspcc-dev/neofs-node/pkg/local_object_storage/shard/mode" ) // FlushWriteCachePrm represents parameters of a `FlushWriteCache` operation. @@ -20,8 +18,7 @@ func (p *FlushWriteCachePrm) SetIgnoreErrors(ignore bool) { // but write-cache is disabled. var errWriteCacheDisabled = errors.New("write-cache is disabled") -// FlushWriteCache moves writecache in read-only mode and flushes all data from it. -// After the operation writecache will remain read-only mode. +// FlushWriteCache flushes all data from the write-cache. func (s *Shard) FlushWriteCache(p FlushWriteCachePrm) error { if !s.hasWriteCache() { return errWriteCacheDisabled @@ -38,9 +35,5 @@ func (s *Shard) FlushWriteCache(p FlushWriteCachePrm) error { return ErrDegradedMode } - if err := s.writeCache.SetMode(mode.ReadOnly); err != nil { - return err - } - return s.writeCache.Flush(p.ignoreErrors) } diff --git a/pkg/local_object_storage/writecache/flush.go b/pkg/local_object_storage/writecache/flush.go index 346f4613f..3a6aed5b3 100644 --- a/pkg/local_object_storage/writecache/flush.go +++ b/pkg/local_object_storage/writecache/flush.go @@ -261,10 +261,6 @@ func (c *cache) Flush(ignoreErrors bool) error { c.modeMtx.RLock() defer c.modeMtx.RUnlock() - if !c.mode.ReadOnly() { - return errMustBeReadOnly - } - return c.flush(ignoreErrors) } diff --git a/pkg/local_object_storage/writecache/flush_test.go b/pkg/local_object_storage/writecache/flush_test.go index dea042e12..15dbfa6b6 100644 --- a/pkg/local_object_storage/writecache/flush_test.go +++ b/pkg/local_object_storage/writecache/flush_test.go @@ -113,7 +113,6 @@ func TestFlush(t *testing.T) { wc, bs, mb := newCache(t) objects := putObjects(t, wc) - require.NoError(t, wc.SetMode(mode.ReadOnly)) require.NoError(t, bs.SetMode(mode.ReadWrite)) require.NoError(t, mb.SetMode(mode.ReadWrite))