swarm/storage: Add separate channel for gc batch execution

This commit is contained in:
lash 2018-10-10 10:22:34 +02:00
parent a15cb44f98
commit 467cd7662b
2 changed files with 55 additions and 71 deletions

View file

@ -96,10 +96,7 @@ type garbage struct {
count int // number of chunks deleted in running round count int // number of chunks deleted in running round
target int // number of chunks to delete in running round target int // number of chunks to delete in running round
batch *dbBatch // the delete batch batch *dbBatch // the delete batch
running bool running bool
//wg sync.WaitGroup // set to wait when a gc round is active
} }
type LDBStore struct { type LDBStore struct {
@ -116,9 +113,11 @@ type LDBStore struct {
po func(Address) uint8 po func(Address) uint8
batchesC chan struct{} batchesC chan struct{}
garbageC chan struct{}
closed bool closed bool
batch *dbBatch batch *dbBatch
lock sync.RWMutex lock sync.RWMutex
//axxLock sync.RWMutex
quit chan struct{} quit chan struct{}
gc *garbage gc *garbage
@ -151,6 +150,7 @@ func NewLDBStore(params *LDBStoreParams) (s *LDBStore, err error) {
s.quit = make(chan struct{}) s.quit = make(chan struct{})
s.batchesC = make(chan struct{}, 1) s.batchesC = make(chan struct{}, 1)
s.garbageC = make(chan struct{}, 1)
go s.writeBatches() go s.writeBatches()
s.batch = newBatch() s.batch = newBatch()
// associate encodeData with default functionality // associate encodeData with default functionality
@ -184,7 +184,6 @@ func NewLDBStore(params *LDBStoreParams) (s *LDBStore, err error) {
maxBatch: defaultMaxGCBatch, maxBatch: defaultMaxGCBatch,
maxRound: defaultMaxGCRound, maxRound: defaultMaxGCRound,
ratio: defaultGCRatio, ratio: defaultGCRatio,
//batch: newBatch(),
} }
return s, nil return s, nil
@ -200,19 +199,10 @@ func (s *LDBStore) startGC(c int) {
} else { } else {
s.gc.target = c / s.gc.ratio s.gc.target = c / s.gc.ratio
} }
s.gc.batch = newBatch()
log.Debug("startgc", "requested", c, "target", s.gc.target) log.Debug("startgc", "requested", c, "target", s.gc.target)
} }
// commit deletions to db
//func (s *LDBStore) runGC() error {
// err := s.db.Write(s.gc.batch.Batch)
// if err != nil {
// return err
// }
// s.gc.batch.Reset()
// return nil
//}
// NewMockDbStore creates a new instance of DbStore with // NewMockDbStore creates a new instance of DbStore with
// mockStore set to a provided value. If mockStore argument is nil, // mockStore set to a provided value. If mockStore argument is nil,
// this function behaves exactly as NewDbStore. // this function behaves exactly as NewDbStore.
@ -318,6 +308,7 @@ func decodeData(addr Address, data []byte) (*chunk, error) {
func (s *LDBStore) collectGarbage() { func (s *LDBStore) collectGarbage() {
// the running param prevents duplicate gc from starting when one is already running
s.lock.Lock() s.lock.Lock()
if s.gc.running { if s.gc.running {
s.lock.Unlock() s.lock.Unlock()
@ -325,7 +316,9 @@ func (s *LDBStore) collectGarbage() {
} }
s.gc.running = true s.gc.running = true
defer func() { defer func() {
s.lock.Lock()
s.gc.running = false s.gc.running = false
s.lock.Unlock()
}() }()
s.lock.Unlock() s.lock.Unlock()
@ -335,7 +328,7 @@ func (s *LDBStore) collectGarbage() {
defer it.Release() defer it.Release()
s.startGC(int(s.entryCnt)) s.startGC(int(s.entryCnt))
log.Trace("collectGarbage", "count", s.gc.target, "entryCnt", s.entryCnt) log.Debug("collectGarbage", "count", s.gc.target, "entryCnt", s.entryCnt)
var totalDeleted int var totalDeleted int
ok := it.Seek([]byte{keyGCIdx}) ok := it.Seek([]byte{keyGCIdx})
@ -355,9 +348,7 @@ func (s *LDBStore) collectGarbage() {
keyIdx[0] = keyIndex keyIdx[0] = keyIndex
copy(keyIdx[1:], hash) copy(keyIdx[1:], hash)
log.Trace("parse gc", "index", index, "po", po, "hash", hash) s.delete(s.gc.batch.Batch, index, keyIdx, po)
s.delete(s.batch.Batch, index, keyIdx, po)
singleIterationCount++ singleIterationCount++
s.gc.count++ s.gc.count++
if s.gc.count > s.gc.maxRound { if s.gc.count > s.gc.maxRound {
@ -365,11 +356,7 @@ func (s *LDBStore) collectGarbage() {
} }
} }
s.lock.Unlock() s.lock.Unlock()
s.batchesC <- struct{}{} s.garbageC <- struct{}{}
// err := s.runGC()
// if err != nil {
// log.Error("gc fail: %v", err)
// }
log.Trace("garbage collect batch done", "batch", singleIterationCount, "total", s.gc.count) log.Trace("garbage collect batch done", "batch", singleIterationCount, "total", s.gc.count)
} }
log.Debug("garbage collect done", "c", s.gc.count) log.Debug("garbage collect done", "c", s.gc.count)
@ -607,15 +594,15 @@ func (s *LDBStore) ReIndex() {
} }
func (s *LDBStore) Delete(addr Address) { func (s *LDBStore) Delete(addr Address) {
s.lock.Lock()
defer s.lock.Unlock()
ikey := getIndexKey(addr) ikey := getIndexKey(addr)
var indx dpaDBIndex var indx dpaDBIndex
proximity := s.po(addr) proximity := s.po(addr)
s.tryAccessIdx(ikey, proximity, &indx) s.tryAccessIdx(ikey, proximity, &indx)
s.lock.Lock()
defer s.lock.Unlock()
s.deleteNow(&indx, ikey, proximity) s.deleteNow(&indx, ikey, proximity)
} }
@ -705,7 +692,6 @@ func (s *LDBStore) Put(ctx context.Context, chunk Chunk) error {
case <-ctx.Done(): case <-ctx.Done():
return ctx.Err() return ctx.Err()
} }
} }
// force putting into db, does not check access index // force putting into db, does not check access index
@ -733,19 +719,31 @@ func (s *LDBStore) writeBatches() {
log.Debug("DbStore: quit batch write loop") log.Debug("DbStore: quit batch write loop")
return return
case <-s.batchesC: case <-s.batchesC:
err := s.writeCurrentBatch() err := s.writeCurrentBatch(false)
if err != nil { if err != nil {
log.Debug("DbStore: quit batch write loop", "err", err.Error()) log.Debug("DbStore: quit batch write loop", "err", err.Error())
return return
} }
case <-s.garbageC:
err := s.writeCurrentBatch(true)
if err != nil {
log.Debug("DbStore: quit batch garbage write loop", "err", err.Error())
return
}
} }
} }
} }
func (s *LDBStore) writeCurrentBatch() error { func (s *LDBStore) writeCurrentBatch(garbage bool) error {
s.lock.Lock() s.lock.Lock()
b := s.batch var b *dbBatch
if garbage {
b = s.gc.batch
} else {
b = s.batch
}
l := b.Len() l := b.Len()
if l == 0 { if l == 0 {
s.lock.Unlock() s.lock.Unlock()
@ -754,36 +752,29 @@ func (s *LDBStore) writeCurrentBatch() error {
e := s.entryCnt e := s.entryCnt
d := s.dataIdx d := s.dataIdx
a := s.accessCnt a := s.accessCnt
if garbage {
s.gc.batch = newBatch()
} else {
s.batch = newBatch() s.batch = newBatch()
}
b.err = s.writeBatch(b, e, d, a) b.err = s.writeBatch(b, e, d, a)
close(b.c) close(b.c)
s.lock.Unlock() s.lock.Unlock()
if e > s.capacity { if e > s.capacity && !garbage {
go s.collectGarbage() go s.collectGarbage()
} }
// log.Debug("for >", "e", e, "s.capacity", s.capacity)
// // Collect garbage in a separate goroutine
// // to be able to interrupt this loop by s.quit.
// done := make(chan struct{})
// go func() {
// s.collectGarbage()
// log.Trace("collectGarbage closing done")
// close(done)
// }()
//
// select {
// case <-s.quit:
// return errors.New("CollectGarbage terminated due to quit")
// case <-done:
// }
// e = s.entryCnt
// }
return nil return nil
} }
// must be called non concurrently // must be called non concurrently
func (s *LDBStore) writeBatch(b *dbBatch, entryCnt, dataIdx, accessCnt uint64) error { func (s *LDBStore) writeBatch(b *dbBatch, entryCnt, dataIdx, accessCnt uint64) error {
b.Put(keyEntryCnt, U64ToBytes(entryCnt)) ub := U64ToBytes(entryCnt)
if len(ub) != 8 || len(keyEntryCnt) != 1 {
e := fmt.Errorf("ub fail: %d -> %v . %d", entryCnt, ub, len(keyEntryCnt))
log.Error("key", "e", e)
return e
}
b.Put(keyEntryCnt, ub)
b.Put(keyDataIdx, U64ToBytes(dataIdx)) b.Put(keyDataIdx, U64ToBytes(dataIdx))
b.Put(keyAccessCnt, U64ToBytes(accessCnt)) b.Put(keyAccessCnt, U64ToBytes(accessCnt))
l := b.Len() l := b.Len()
@ -809,8 +800,8 @@ func newMockEncodeDataFunc(mockStore *mock.NodeStore) func(chunk Chunk) []byte {
// try to find index; if found, update access cnt and return true // try to find index; if found, update access cnt and return true
func (s *LDBStore) tryAccessIdx(ikey []byte, po uint8, index *dpaDBIndex) bool { func (s *LDBStore) tryAccessIdx(ikey []byte, po uint8, index *dpaDBIndex) bool {
s.lock.Lock() //s.axxLock.Lock()
defer s.lock.Unlock() //defer s.axxLock.Unlock()
idata, err := s.db.Get(ikey) idata, err := s.db.Get(ikey)
if err != nil { if err != nil {
return false return false
@ -932,7 +923,7 @@ func (s *LDBStore) Close() {
s.closed = true s.closed = true
s.lock.Unlock() s.lock.Unlock()
// force writing out current batch // force writing out current batch
s.writeCurrentBatch() s.writeCurrentBatch(false)
close(s.batchesC) close(s.batchesC)
s.db.Close() s.db.Close()
} }

View file

@ -304,7 +304,7 @@ func TestLDBStoreCollectGarbage(t *testing.T) {
var cap int var cap int
cap = defaultMaxGCRound cap = defaultMaxGCRound
//t.Run(fmt.Sprintf("A/%d/%d", cap, cap*2+1), testLDBStoreCollectGarbage) t.Run(fmt.Sprintf("A/%d/%d", cap, cap*2+1), testLDBStoreCollectGarbage)
cap = defaultMaxGCRound / 2 cap = defaultMaxGCRound / 2
t.Run(fmt.Sprintf("A/%d/%d", cap, cap*4), testLDBStoreCollectGarbage) t.Run(fmt.Sprintf("A/%d/%d", cap, cap*4), testLDBStoreCollectGarbage)
@ -345,7 +345,7 @@ func testLDBStoreCollectGarbage(t *testing.T) {
var missing int var missing int
for _, ch := range chunks { for _, ch := range chunks {
ret, err := ldb.get(ch.Address()) ret, err := ldb.Get(context.TODO(), ch.Address())
if err == ErrChunkNotFound || err == ldberrors.ErrNotFound { if err == ErrChunkNotFound || err == ldberrors.ErrNotFound {
missing++ missing++
continue continue
@ -395,7 +395,6 @@ func TestLDBStoreAddRemove(t *testing.T) {
if i%2 == 0 { if i%2 == 0 {
// expect even chunks to be missing // expect even chunks to be missing
if err == nil { if err == nil {
// if err != ErrChunkNotFound {
t.Fatal("expected chunk to be missing, but got no error") t.Fatal("expected chunk to be missing, but got no error")
} }
} else { } else {
@ -442,13 +441,7 @@ func testLDBStoreRemoveThenCollectGarbage(t *testing.T) {
// delete all chunks // delete all chunks
for i := 0; i < n; i++ { for i := 0; i < n; i++ {
ikey := getIndexKey(chunks[i].Address()) ldb.Delete(chunks[i].Address()) //&indx, ikey, proximity)
var indx dpaDBIndex
proximity := ldb.po(chunks[i].Address())
ldb.tryAccessIdx(ikey, proximity, &indx)
ldb.deleteNow(&indx, ikey, proximity)
} }
log.Info("ldbstore", "entrycnt", ldb.entryCnt, "accesscnt", ldb.accessCnt) log.Info("ldbstore", "entrycnt", ldb.entryCnt, "accesscnt", ldb.accessCnt)
@ -459,7 +452,7 @@ func testLDBStoreRemoveThenCollectGarbage(t *testing.T) {
expAccessCnt := uint64(n * 2) expAccessCnt := uint64(n * 2)
if ldb.accessCnt != expAccessCnt { if ldb.accessCnt != expAccessCnt {
t.Fatalf("ldb.accessCnt expected %v got %v", expAccessCnt, ldb.entryCnt) t.Fatalf("ldb.accessCnt expected %v got %v", expAccessCnt, ldb.accessCnt)
} }
cleanup() cleanup()
@ -481,7 +474,7 @@ func testLDBStoreRemoveThenCollectGarbage(t *testing.T) {
// expect first surplus chunks to be missing, because they have the smallest access value // expect first surplus chunks to be missing, because they have the smallest access value
for i := 0; i < surplus; i++ { for i := 0; i < surplus; i++ {
_, err := ldb.get(chunks[i].Address()) _, err := ldb.Get(context.TODO(), chunks[i].Address())
if err == nil { if err == nil {
t.Fatal("expected surplus chunk to be missing, but got no error") t.Fatal("expected surplus chunk to be missing, but got no error")
} }
@ -489,7 +482,7 @@ func testLDBStoreRemoveThenCollectGarbage(t *testing.T) {
// expect last chunks to be present, as they have the largest access value // expect last chunks to be present, as they have the largest access value
for i := surplus; i < surplus+capacity; i++ { for i := surplus; i < surplus+capacity; i++ {
ret, err := ldb.get(chunks[i].Address()) ret, err := ldb.Get(context.TODO(), chunks[i].Address())
if err != nil { if err != nil {
t.Fatalf("chunk %v: expected no error, but got %s", i, err) t.Fatalf("chunk %v: expected no error, but got %s", i, err)
} }
@ -517,7 +510,7 @@ func TestLDBStoreCollectGarbageAccessUnlikeIndex(t *testing.T) {
// set first added capacity/2 chunks to highest accesscount // set first added capacity/2 chunks to highest accesscount
for i := 0; i < capacity/2; i++ { for i := 0; i < capacity/2; i++ {
_, err := ldb.get(chunks[i].Address()) _, err := ldb.Get(context.TODO(), chunks[i].Address())
if err != nil { if err != nil {
t.Fatalf("fail add chunk #%d - %s: %v", i, chunks[i].Address(), err) t.Fatalf("fail add chunk #%d - %s: %v", i, chunks[i].Address(), err)
} }
@ -534,7 +527,7 @@ func TestLDBStoreCollectGarbageAccessUnlikeIndex(t *testing.T) {
var missing int var missing int
for i, ch := range chunks[2 : capacity/2] { for i, ch := range chunks[2 : capacity/2] {
ret, err := ldb.get(ch.Address()) ret, err := ldb.Get(context.TODO(), ch.Address())
if err == ErrChunkNotFound || err == ldberrors.ErrNotFound { if err == ErrChunkNotFound || err == ldberrors.ErrNotFound {
t.Fatalf("fail find chunk #%d - %s: %v", i, ch.Address(), err) t.Fatalf("fail find chunk #%d - %s: %v", i, ch.Address(), err)
} }