2021-03-05 17:55:32 +00:00
|
|
|
package splitstore
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2021-07-04 09:43:05 +00:00
|
|
|
"errors"
|
2021-03-05 17:55:32 +00:00
|
|
|
"fmt"
|
|
|
|
"sync"
|
2021-03-09 07:05:36 +00:00
|
|
|
"sync/atomic"
|
2021-03-05 17:55:32 +00:00
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
|
|
|
"github.com/filecoin-project/lotus/blockstore"
|
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
|
|
|
"github.com/filecoin-project/lotus/chain/types/mock"
|
|
|
|
|
2021-03-13 10:00:28 +00:00
|
|
|
blocks "github.com/ipfs/go-block-format"
|
2021-07-04 09:43:05 +00:00
|
|
|
cid "github.com/ipfs/go-cid"
|
2021-03-05 17:55:32 +00:00
|
|
|
datastore "github.com/ipfs/go-datastore"
|
2021-03-09 00:15:55 +00:00
|
|
|
dssync "github.com/ipfs/go-datastore/sync"
|
2021-03-05 17:55:32 +00:00
|
|
|
logging "github.com/ipfs/go-log/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
CompactionThreshold = 5
|
|
|
|
CompactionBoundary = 2
|
2021-07-25 09:25:42 +00:00
|
|
|
WarmupBoundary = 0
|
2021-03-05 17:55:32 +00:00
|
|
|
logging.SetLogLevel("splitstore", "DEBUG")
|
|
|
|
}
|
|
|
|
|
|
|
|
func testSplitStore(t *testing.T, cfg *Config) {
|
2021-04-29 02:55:18 +00:00
|
|
|
chain := &mockChain{t: t}
|
2021-03-05 17:55:32 +00:00
|
|
|
|
|
|
|
// the myriads of stores
|
2021-03-09 00:15:55 +00:00
|
|
|
ds := dssync.MutexWrap(datastore.NewMapDatastore())
|
2021-07-04 09:43:05 +00:00
|
|
|
hot := newMockStore()
|
|
|
|
cold := newMockStore()
|
2021-03-05 17:55:32 +00:00
|
|
|
|
2021-03-13 10:00:28 +00:00
|
|
|
// this is necessary to avoid the garbage mock puts in the blocks
|
|
|
|
garbage := blocks.NewBlock([]byte{1, 2, 3})
|
|
|
|
err := cold.Put(garbage)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// genesis
|
|
|
|
genBlock := mock.MkBlock(nil, 0, 0)
|
|
|
|
genBlock.Messages = garbage.Cid()
|
|
|
|
genBlock.ParentMessageReceipts = garbage.Cid()
|
|
|
|
genBlock.ParentStateRoot = garbage.Cid()
|
2021-03-14 10:32:05 +00:00
|
|
|
genBlock.Timestamp = uint64(time.Now().Unix())
|
2021-03-13 10:00:28 +00:00
|
|
|
|
|
|
|
genTs := mock.TipSet(genBlock)
|
|
|
|
chain.push(genTs)
|
|
|
|
|
2021-03-05 17:55:32 +00:00
|
|
|
// put the genesis block to cold store
|
|
|
|
blk, err := genBlock.ToStorageBlock()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = cold.Put(blk)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2021-07-17 17:40:13 +00:00
|
|
|
// create a garbage block that is protected with a rgistered protector
|
|
|
|
protected := blocks.NewBlock([]byte("protected!"))
|
|
|
|
err = hot.Put(protected)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// and another one that is not protected
|
|
|
|
unprotected := blocks.NewBlock([]byte("unprotected!"))
|
|
|
|
err = hot.Put(unprotected)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2021-03-05 17:55:32 +00:00
|
|
|
// open the splitstore
|
|
|
|
ss, err := Open("", ds, hot, cold, cfg)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2021-03-05 18:05:32 +00:00
|
|
|
defer ss.Close() //nolint
|
2021-03-05 17:55:32 +00:00
|
|
|
|
2021-07-17 17:40:13 +00:00
|
|
|
// register our protector
|
|
|
|
ss.AddProtector(func(protect func(cid.Cid) error) error {
|
|
|
|
return protect(protected.Cid())
|
|
|
|
})
|
|
|
|
|
2021-03-05 17:55:32 +00:00
|
|
|
err = ss.Start(chain)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// make some tipsets, but not enough to cause compaction
|
2021-07-04 09:56:01 +00:00
|
|
|
mkBlock := func(curTs *types.TipSet, i int, stateRoot blocks.Block) *types.TipSet {
|
2021-03-05 17:55:32 +00:00
|
|
|
blk := mock.MkBlock(curTs, uint64(i), uint64(i))
|
2021-03-13 10:00:28 +00:00
|
|
|
|
|
|
|
blk.Messages = garbage.Cid()
|
|
|
|
blk.ParentMessageReceipts = garbage.Cid()
|
2021-07-04 09:56:01 +00:00
|
|
|
blk.ParentStateRoot = stateRoot.Cid()
|
2021-03-14 10:32:05 +00:00
|
|
|
blk.Timestamp = uint64(time.Now().Unix())
|
2021-03-13 10:00:28 +00:00
|
|
|
|
2021-03-05 17:55:32 +00:00
|
|
|
sblk, err := blk.ToStorageBlock()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2021-07-04 09:56:01 +00:00
|
|
|
err = ss.Put(stateRoot)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2021-03-05 17:55:32 +00:00
|
|
|
err = ss.Put(sblk)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
ts := mock.TipSet(blk)
|
|
|
|
chain.push(ts)
|
|
|
|
|
|
|
|
return ts
|
|
|
|
}
|
|
|
|
|
2021-03-09 07:05:36 +00:00
|
|
|
waitForCompaction := func() {
|
|
|
|
for atomic.LoadInt32(&ss.compacting) == 1 {
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-05 17:55:32 +00:00
|
|
|
curTs := genTs
|
|
|
|
for i := 1; i < 5; i++ {
|
2021-07-04 09:56:01 +00:00
|
|
|
stateRoot := blocks.NewBlock([]byte{byte(i), 3, 3, 7})
|
|
|
|
curTs = mkBlock(curTs, i, stateRoot)
|
2021-03-09 07:05:36 +00:00
|
|
|
waitForCompaction()
|
2021-03-05 17:55:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// count objects in the cold and hot stores
|
|
|
|
countBlocks := func(bs blockstore.Blockstore) int {
|
|
|
|
count := 0
|
2021-07-04 10:17:31 +00:00
|
|
|
_ = bs.(blockstore.BlockstoreIterator).ForEachKey(func(_ cid.Cid) error {
|
2021-03-05 17:55:32 +00:00
|
|
|
count++
|
2021-07-04 09:43:05 +00:00
|
|
|
return nil
|
|
|
|
})
|
2021-03-05 17:55:32 +00:00
|
|
|
return count
|
|
|
|
}
|
|
|
|
|
|
|
|
coldCnt := countBlocks(cold)
|
|
|
|
hotCnt := countBlocks(hot)
|
|
|
|
|
2021-03-13 10:00:28 +00:00
|
|
|
if coldCnt != 2 {
|
|
|
|
t.Errorf("expected %d blocks, but got %d", 2, coldCnt)
|
2021-03-05 17:55:32 +00:00
|
|
|
}
|
|
|
|
|
2021-07-17 17:40:13 +00:00
|
|
|
if hotCnt != 12 {
|
|
|
|
t.Errorf("expected %d blocks, but got %d", 12, hotCnt)
|
2021-03-05 17:55:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// trigger a compaction
|
|
|
|
for i := 5; i < 10; i++ {
|
2021-07-04 09:56:01 +00:00
|
|
|
stateRoot := blocks.NewBlock([]byte{byte(i), 3, 3, 7})
|
|
|
|
curTs = mkBlock(curTs, i, stateRoot)
|
2021-03-09 07:05:36 +00:00
|
|
|
waitForCompaction()
|
2021-03-05 17:55:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
coldCnt = countBlocks(cold)
|
|
|
|
hotCnt = countBlocks(hot)
|
|
|
|
|
2021-07-17 17:40:13 +00:00
|
|
|
if coldCnt != 6 {
|
|
|
|
t.Errorf("expected %d cold blocks, but got %d", 6, coldCnt)
|
|
|
|
}
|
|
|
|
|
|
|
|
if hotCnt != 18 {
|
|
|
|
t.Errorf("expected %d hot blocks, but got %d", 18, hotCnt)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ensure our protected block is still there
|
|
|
|
has, err := hot.Has(protected.Cid())
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !has {
|
|
|
|
t.Fatal("protected block is missing from hotstore")
|
|
|
|
}
|
|
|
|
|
|
|
|
// ensure our unprotected block is in the coldstore now
|
|
|
|
has, err = hot.Has(unprotected.Cid())
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if has {
|
|
|
|
t.Fatal("unprotected block is still in hotstore")
|
|
|
|
}
|
|
|
|
|
|
|
|
has, err = cold.Has(unprotected.Cid())
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
2021-03-05 17:55:32 +00:00
|
|
|
}
|
|
|
|
|
2021-07-17 17:40:13 +00:00
|
|
|
if !has {
|
|
|
|
t.Fatal("unprotected block is missing from coldstore")
|
2021-03-05 17:55:32 +00:00
|
|
|
}
|
2021-04-29 02:55:18 +00:00
|
|
|
|
2021-04-29 05:08:37 +00:00
|
|
|
// Make sure we can revert without panicking.
|
2021-04-29 02:55:18 +00:00
|
|
|
chain.revert(2)
|
2021-03-05 17:55:32 +00:00
|
|
|
}
|
|
|
|
|
2021-07-04 09:43:05 +00:00
|
|
|
func TestSplitStoreCompaction(t *testing.T) {
|
2021-07-09 08:38:09 +00:00
|
|
|
testSplitStore(t, &Config{MarkSetType: "map"})
|
2021-03-05 17:55:32 +00:00
|
|
|
}
|
|
|
|
|
2021-07-23 08:38:01 +00:00
|
|
|
func TestSplitStoreCompactionWithBadger(t *testing.T) {
|
2021-07-23 09:07:38 +00:00
|
|
|
bs := badgerMarkSetBatchSize
|
|
|
|
badgerMarkSetBatchSize = 1
|
|
|
|
t.Cleanup(func() {
|
|
|
|
badgerMarkSetBatchSize = bs
|
|
|
|
})
|
2021-07-23 08:38:01 +00:00
|
|
|
testSplitStore(t, &Config{MarkSetType: "badger"})
|
|
|
|
}
|
|
|
|
|
2021-03-05 17:55:32 +00:00
|
|
|
type mockChain struct {
|
2021-04-29 02:55:18 +00:00
|
|
|
t testing.TB
|
|
|
|
|
2021-03-05 17:55:32 +00:00
|
|
|
sync.Mutex
|
2021-03-19 10:17:32 +00:00
|
|
|
genesis *types.BlockHeader
|
2021-03-05 17:55:32 +00:00
|
|
|
tipsets []*types.TipSet
|
|
|
|
listener func(revert []*types.TipSet, apply []*types.TipSet) error
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *mockChain) push(ts *types.TipSet) {
|
|
|
|
c.Lock()
|
|
|
|
c.tipsets = append(c.tipsets, ts)
|
2021-03-19 10:17:32 +00:00
|
|
|
if c.genesis == nil {
|
|
|
|
c.genesis = ts.Blocks()[0]
|
|
|
|
}
|
2021-03-05 17:55:32 +00:00
|
|
|
c.Unlock()
|
|
|
|
|
|
|
|
if c.listener != nil {
|
|
|
|
err := c.listener(nil, []*types.TipSet{ts})
|
|
|
|
if err != nil {
|
2021-04-29 02:55:18 +00:00
|
|
|
c.t.Errorf("mockchain: error dispatching listener: %s", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *mockChain) revert(count int) {
|
|
|
|
c.Lock()
|
|
|
|
revert := make([]*types.TipSet, count)
|
|
|
|
if count > len(c.tipsets) {
|
|
|
|
c.Unlock()
|
|
|
|
c.t.Fatalf("not enough tipsets to revert")
|
|
|
|
}
|
|
|
|
copy(revert, c.tipsets[len(c.tipsets)-count:])
|
|
|
|
c.tipsets = c.tipsets[:len(c.tipsets)-count]
|
|
|
|
c.Unlock()
|
|
|
|
|
|
|
|
if c.listener != nil {
|
|
|
|
err := c.listener(revert, nil)
|
|
|
|
if err != nil {
|
|
|
|
c.t.Errorf("mockchain: error dispatching listener: %s", err)
|
2021-03-05 17:55:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *mockChain) GetTipsetByHeight(_ context.Context, epoch abi.ChainEpoch, _ *types.TipSet, _ bool) (*types.TipSet, error) {
|
|
|
|
c.Lock()
|
|
|
|
defer c.Unlock()
|
|
|
|
|
|
|
|
iEpoch := int(epoch)
|
|
|
|
if iEpoch > len(c.tipsets) {
|
|
|
|
return nil, fmt.Errorf("bad epoch %d", epoch)
|
|
|
|
}
|
|
|
|
|
2021-03-13 10:00:28 +00:00
|
|
|
return c.tipsets[iEpoch], nil
|
2021-03-05 17:55:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *mockChain) GetHeaviestTipSet() *types.TipSet {
|
|
|
|
c.Lock()
|
|
|
|
defer c.Unlock()
|
|
|
|
|
|
|
|
return c.tipsets[len(c.tipsets)-1]
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *mockChain) SubscribeHeadChanges(change func(revert []*types.TipSet, apply []*types.TipSet) error) {
|
|
|
|
c.listener = change
|
|
|
|
}
|
2021-07-04 09:43:05 +00:00
|
|
|
|
|
|
|
type mockStore struct {
|
|
|
|
mx sync.Mutex
|
|
|
|
set map[cid.Cid]blocks.Block
|
|
|
|
}
|
|
|
|
|
|
|
|
func newMockStore() *mockStore {
|
|
|
|
return &mockStore{set: make(map[cid.Cid]blocks.Block)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *mockStore) Has(cid cid.Cid) (bool, error) {
|
|
|
|
b.mx.Lock()
|
|
|
|
defer b.mx.Unlock()
|
|
|
|
_, ok := b.set[cid]
|
|
|
|
return ok, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *mockStore) HashOnRead(hor bool) {}
|
|
|
|
|
|
|
|
func (b *mockStore) Get(cid cid.Cid) (blocks.Block, error) {
|
|
|
|
b.mx.Lock()
|
|
|
|
defer b.mx.Unlock()
|
|
|
|
|
|
|
|
blk, ok := b.set[cid]
|
|
|
|
if !ok {
|
|
|
|
return nil, blockstore.ErrNotFound
|
|
|
|
}
|
|
|
|
return blk, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *mockStore) GetSize(cid cid.Cid) (int, error) {
|
|
|
|
blk, err := b.Get(cid)
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return len(blk.RawData()), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *mockStore) View(cid cid.Cid, f func([]byte) error) error {
|
|
|
|
blk, err := b.Get(cid)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return f(blk.RawData())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *mockStore) Put(blk blocks.Block) error {
|
|
|
|
b.mx.Lock()
|
|
|
|
defer b.mx.Unlock()
|
|
|
|
|
|
|
|
b.set[blk.Cid()] = blk
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *mockStore) PutMany(blks []blocks.Block) error {
|
|
|
|
b.mx.Lock()
|
|
|
|
defer b.mx.Unlock()
|
|
|
|
|
|
|
|
for _, blk := range blks {
|
|
|
|
b.set[blk.Cid()] = blk
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *mockStore) DeleteBlock(cid cid.Cid) error {
|
|
|
|
b.mx.Lock()
|
|
|
|
defer b.mx.Unlock()
|
|
|
|
|
|
|
|
delete(b.set, cid)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *mockStore) DeleteMany(cids []cid.Cid) error {
|
|
|
|
b.mx.Lock()
|
|
|
|
defer b.mx.Unlock()
|
|
|
|
|
|
|
|
for _, c := range cids {
|
|
|
|
delete(b.set, c)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *mockStore) AllKeysChan(ctx context.Context) (<-chan cid.Cid, error) {
|
|
|
|
return nil, errors.New("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *mockStore) ForEachKey(f func(cid.Cid) error) error {
|
|
|
|
b.mx.Lock()
|
|
|
|
defer b.mx.Unlock()
|
|
|
|
|
|
|
|
for c := range b.set {
|
|
|
|
err := f(c)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *mockStore) Close() error {
|
|
|
|
return nil
|
|
|
|
}
|