[#947] writecache: refactor object persisting

a1696a8 introduced some logic which in some situations prevented big objects
to be persisted in FSTree. In this commit a refactoring is done with the
goal of simplifying the code and also checking #866 issue.

1. Split a monstrous function into multiple simple ones: memory objects
   can only be small and for writing through the cache we can do a dispatch
   in `Put` itself.
2. Determine objects to be put in database before the actual update
   as setting up a transaction has non-zero overhead.

Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
This commit is contained in:
Evgenii Stratonikov 2021-10-27 14:48:33 +03:00 committed by Alex Vanin
parent 088c894f44
commit 1462824ab8
5 changed files with 56 additions and 114 deletions

View file

@ -45,7 +45,6 @@ func (c *cache) Delete(addr *objectSDK.Address) error {
if err != nil { if err != nil {
return err return err
} }
c.dbSize.Sub(uint64(has))
storagelog.Write(c.log, storagelog.AddressField(saddr), storagelog.OpField("db DELETE")) storagelog.Write(c.log, storagelog.AddressField(saddr), storagelog.OpField("db DELETE"))
c.objCounters.DecDB() c.objCounters.DecDB()
return nil return nil

View file

@ -26,7 +26,7 @@ func (c *cache) persistLoop() {
sort.Slice(m, func(i, j int) bool { return m[i].addr < m[j].addr }) sort.Slice(m, func(i, j int) bool { return m[i].addr < m[j].addr })
start := time.Now() start := time.Now()
c.persistObjects(m) c.persistSmallObjects(m)
c.log.Debug("persisted items to disk", c.log.Debug("persisted items to disk",
zap.Duration("took", time.Since(start)), zap.Duration("took", time.Since(start)),
zap.Int("total", len(m))) zap.Int("total", len(m)))
@ -52,130 +52,73 @@ func (c *cache) persistLoop() {
} }
} }
func (c *cache) persistToCache(objs []objectInfo) []int { // persistSmallObjects persists small objects to the write-cache database and
var ( // pushes the to the flush workers queue.
failMem []int // some index is negative => all objects starting from it will overflow the cache func (c *cache) persistSmallObjects(objs []objectInfo) {
doneMem []int cacheSize := c.estimateCacheSize()
) overflowIndex := len(objs)
var sz uint64 for i := range objs {
newSize := c.incSizeDB(cacheSize)
if c.maxCacheSize < newSize {
overflowIndex = i
break
}
cacheSize = newSize
}
err := c.db.Update(func(tx *bbolt.Tx) error { err := c.db.Update(func(tx *bbolt.Tx) error {
b := tx.Bucket(defaultBucket) b := tx.Bucket(defaultBucket)
cacheSz := c.estimateCacheSize() for i := 0; i < overflowIndex; i++ {
for i := range objs {
if uint64(len(objs[i].data)) >= c.smallObjectSize {
failMem = append(failMem, i)
continue
}
// check if object will overflow write-cache size limit
updCacheSz := c.incSizeDB(cacheSz)
if updCacheSz > c.maxCacheSize {
// set negative index. We decrement index to cover 0 val (overflow is practically impossible)
failMem = append(failMem, -i-1)
return nil
}
err := b.Put([]byte(objs[i].addr), objs[i].data) err := b.Put([]byte(objs[i].addr), objs[i].data)
if err != nil { if err != nil {
return err return err
} }
sz += uint64(len(objs[i].data))
doneMem = append(doneMem, i)
storagelog.Write(c.log, storagelog.AddressField(objs[i].addr), storagelog.OpField("db PUT"))
// update cache size
cacheSz = updCacheSz
c.objCounters.IncDB()
} }
return nil return nil
}) })
if err == nil { if err != nil {
c.dbSize.Add(sz) overflowIndex = 0
} } else {
if len(doneMem) > 0 { c.evictObjects(overflowIndex)
c.evictObjects(len(doneMem))
for _, i := range doneMem {
c.flushed.Add(objs[i].addr, true)
}
} }
var failDisk []int for i := 0; i < overflowIndex; i++ {
storagelog.Write(c.log, storagelog.AddressField(objs[i].addr), storagelog.OpField("db PUT"))
cacheSz := c.estimateCacheSize() c.objCounters.IncDB()
c.flushed.Add(objs[i].addr, true)
for _, objInd := range failMem {
var (
updCacheSz uint64
overflowInd = -1
)
if objInd < 0 {
// actually, since the overflow was detected in DB tx, the required space could well have been freed,
// but it is easier to consider the entire method atomic
overflowInd = -objInd - 1 // subtract 1 since we decremented index above
} else {
// check if object will overflow write-cache size limit
if updCacheSz = c.incSizeFS(cacheSz); updCacheSz > c.maxCacheSize {
overflowInd = objInd
}
}
if overflowInd >= 0 {
loop:
for j := range objs[overflowInd:] {
// exclude objects which are already stored in DB
for _, doneMemInd := range doneMem {
if j == doneMemInd {
continue loop
}
}
failDisk = append(failDisk, j)
}
break
}
if uint64(len(objs[objInd].data)) > c.maxObjectSize {
failDisk = append(failDisk, objInd)
continue
}
err := c.fsTree.Put(objs[objInd].obj.Address(), objs[objInd].data)
if err != nil {
failDisk = append(failDisk, objInd)
} else {
storagelog.Write(c.log, storagelog.AddressField(objs[objInd].addr), storagelog.OpField("fstree PUT"))
// update cache size
cacheSz = updCacheSz
c.objCounters.IncFS()
}
} }
return failDisk c.addToFlushQueue(objs, overflowIndex)
} }
// persistObjects tries to write objects from memory to the persistent storage. // persistBigObject writes object to FSTree and pushes it to the flush workers queue.
// If tryCache is false, writing skips cache and is done directly to the main storage. func (c *cache) persistBigObject(objInfo objectInfo) {
func (c *cache) persistObjects(objs []objectInfo) { cacheSz := c.estimateCacheSize()
toDisk := c.persistToCache(objs) metaIndex := 0
j := 0 if c.incSizeFS(cacheSz) <= c.maxCacheSize {
err := c.fsTree.Put(objInfo.obj.Address(), objInfo.data)
for i := range objs { if err == nil {
ch := c.metaCh metaIndex = 1
if j < len(toDisk) { c.objCounters.IncFS()
if i == toDisk[j] { storagelog.Write(c.log, storagelog.AddressField(objInfo.addr), storagelog.OpField("fstree PUT"))
ch = c.directCh
} else {
for ; j < len(toDisk) && i > toDisk[j]; j++ {
}
}
} }
}
c.addToFlushQueue([]objectInfo{objInfo}, metaIndex)
}
// addToFlushQueue pushes objects to the flush workers queue.
// For objects below metaIndex only meta information will be flushed.
func (c *cache) addToFlushQueue(objs []objectInfo, metaIndex int) {
for i := 0; i < metaIndex; i++ {
select { select {
case ch <- objs[j].obj: case c.metaCh <- objs[i].obj:
case <-c.closeCh:
return
}
}
for i := metaIndex; i < len(objs); i++ {
select {
case c.directCh <- objs[i].obj:
case <-c.closeCh: case <-c.closeCh:
return return
} }

View file

@ -30,7 +30,7 @@ func (c *cache) Put(o *object.Object) error {
c.mtx.Lock() c.mtx.Lock()
if sz < c.smallObjectSize && c.curMemSize+sz <= c.maxMemSize { if sz <= c.smallObjectSize && c.curMemSize+sz <= c.maxMemSize {
c.curMemSize += sz c.curMemSize += sz
c.mem = append(c.mem, oi) c.mem = append(c.mem, oi)
@ -43,6 +43,10 @@ func (c *cache) Put(o *object.Object) error {
c.mtx.Unlock() c.mtx.Unlock()
c.persistObjects([]objectInfo{oi}) if sz <= c.smallObjectSize {
c.persistSmallObjects([]objectInfo{oi})
} else {
c.persistBigObject(oi)
}
return nil return nil
} }

View file

@ -117,7 +117,6 @@ func (c *cache) deleteFromDB(keys [][]byte) error {
if err != nil { if err != nil {
return err return err
} }
c.dbSize.Sub(sz)
c.objCounters.DecDB() c.objCounters.DecDB()
return nil return nil
} }

View file

@ -6,7 +6,6 @@ import (
objectSDK "github.com/nspcc-dev/neofs-api-go/pkg/object" objectSDK "github.com/nspcc-dev/neofs-api-go/pkg/object"
"github.com/nspcc-dev/neofs-node/pkg/core/object" "github.com/nspcc-dev/neofs-node/pkg/core/object"
"github.com/nspcc-dev/neofs-node/pkg/local_object_storage/blobstor/fstree" "github.com/nspcc-dev/neofs-node/pkg/local_object_storage/blobstor/fstree"
"go.uber.org/atomic"
"go.uber.org/zap" "go.uber.org/zap"
) )
@ -44,8 +43,6 @@ type cache struct {
evictCh chan []byte evictCh chan []byte
// store contains underlying database. // store contains underlying database.
store store
// dbSize stores approximate database size. It is updated every flush/persist cycle.
dbSize atomic.Uint64
// fsTree contains big files stored directly on file-system. // fsTree contains big files stored directly on file-system.
fsTree *fstree.FSTree fsTree *fstree.FSTree
} }