lotus/blockstore/splitstore/splitstore_test.go

549 lines
11 KiB
Go
Raw Normal View History

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"
"io/ioutil"
"os"
2021-03-05 17:55:32 +00:00
"sync"
"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/stmgr"
2021-03-05 17:55:32 +00:00
"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"
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
WarmupBoundary = 0
2021-03-05 17:55:32 +00:00
logging.SetLogLevel("splitstore", "DEBUG")
}
func testSplitStore(t *testing.T, cfg *Config) {
2021-12-14 15:17:30 +00:00
ctx := context.Background()
chain := &mockChain{t: t}
2021-03-05 17:55:32 +00:00
// the myriads of stores
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})
2021-12-14 15:17:30 +00:00
err := cold.Put(ctx, garbage)
2021-03-13 10:00:28 +00:00
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()
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)
}
2021-12-14 15:17:30 +00:00
err = cold.Put(ctx, blk)
2021-03-05 17:55:32 +00:00
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!"))
2021-12-14 15:17:30 +00:00
err = hot.Put(ctx, protected)
2021-07-17 17:40:13 +00:00
if err != nil {
t.Fatal(err)
}
// and another one that is not protected
unprotected := blocks.NewBlock([]byte("unprotected!"))
2021-12-14 15:17:30 +00:00
err = hot.Put(ctx, unprotected)
2021-07-17 17:40:13 +00:00
if err != nil {
t.Fatal(err)
}
path, err := ioutil.TempDir("", "splitstore.*")
if err != nil {
t.Fatal(err)
}
t.Cleanup(func() {
_ = os.RemoveAll(path)
})
2021-03-05 17:55:32 +00:00
// open the splitstore
ss, err := Open(path, ds, hot, cold, cfg)
2021-03-05 17:55:32 +00:00
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())
})
err = ss.Start(chain, nil)
2021-03-05 17:55:32 +00:00
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()
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-12-14 15:17:30 +00:00
err = ss.Put(ctx, stateRoot)
2021-07-04 09:56:01 +00:00
if err != nil {
t.Fatal(err)
}
2021-12-14 15:17:30 +00:00
err = ss.Put(ctx, sblk)
2021-03-05 17:55:32 +00:00
if err != nil {
t.Fatal(err)
}
ts := mock.TipSet(blk)
chain.push(ts)
return ts
}
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)
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)
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
2021-12-14 15:17:30 +00:00
has, err := hot.Has(ctx, protected.Cid())
2021-07-17 17:40:13 +00:00
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
2021-12-14 15:17:30 +00:00
has, err = hot.Has(ctx, unprotected.Cid())
2021-07-17 17:40:13 +00:00
if err != nil {
t.Fatal(err)
}
if has {
t.Fatal("unprotected block is still in hotstore")
}
2021-12-14 15:17:30 +00:00
has, err = cold.Has(ctx, unprotected.Cid())
2021-07-17 17:40:13 +00:00
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
}
// Make sure we can revert without panicking.
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
}
func TestSplitStoreCompactionWithBadger(t *testing.T) {
bs := badgerMarkSetBatchSize
badgerMarkSetBatchSize = 1
t.Cleanup(func() {
badgerMarkSetBatchSize = bs
})
testSplitStore(t, &Config{MarkSetType: "badger"})
}
func TestSplitStoreSuppressCompactionNearUpgrade(t *testing.T) {
2021-12-14 15:17:30 +00:00
ctx := context.Background()
chain := &mockChain{t: t}
// the myriads of stores
ds := dssync.MutexWrap(datastore.NewMapDatastore())
hot := newMockStore()
cold := newMockStore()
// this is necessary to avoid the garbage mock puts in the blocks
garbage := blocks.NewBlock([]byte{1, 2, 3})
2021-12-14 15:17:30 +00:00
err := cold.Put(ctx, 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()
genBlock.Timestamp = uint64(time.Now().Unix())
genTs := mock.TipSet(genBlock)
chain.push(genTs)
// put the genesis block to cold store
blk, err := genBlock.ToStorageBlock()
if err != nil {
t.Fatal(err)
}
2021-12-14 15:17:30 +00:00
err = cold.Put(ctx, blk)
if err != nil {
t.Fatal(err)
}
path, err := ioutil.TempDir("", "splitstore.*")
if err != nil {
t.Fatal(err)
}
t.Cleanup(func() {
_ = os.RemoveAll(path)
})
// open the splitstore
ss, err := Open(path, ds, hot, cold, &Config{MarkSetType: "map"})
if err != nil {
t.Fatal(err)
}
defer ss.Close() //nolint
// create an upgrade schedule that will suppress compaction during the test
upgradeBoundary = 0
upgrade := stmgr.Upgrade{
Height: 10,
PreMigrations: []stmgr.PreMigration{{StartWithin: 10}},
}
err = ss.Start(chain, []stmgr.Upgrade{upgrade})
if err != nil {
t.Fatal(err)
}
mkBlock := func(curTs *types.TipSet, i int, stateRoot blocks.Block) *types.TipSet {
blk := mock.MkBlock(curTs, uint64(i), uint64(i))
blk.Messages = garbage.Cid()
blk.ParentMessageReceipts = garbage.Cid()
blk.ParentStateRoot = stateRoot.Cid()
blk.Timestamp = uint64(time.Now().Unix())
sblk, err := blk.ToStorageBlock()
if err != nil {
t.Fatal(err)
}
2021-12-14 15:17:30 +00:00
err = ss.Put(ctx, stateRoot)
if err != nil {
t.Fatal(err)
}
2021-12-14 15:17:30 +00:00
err = ss.Put(ctx, sblk)
if err != nil {
t.Fatal(err)
}
ts := mock.TipSet(blk)
chain.push(ts)
return ts
}
waitForCompaction := func() {
for atomic.LoadInt32(&ss.compacting) == 1 {
time.Sleep(100 * time.Millisecond)
}
}
curTs := genTs
for i := 1; i < 10; i++ {
stateRoot := blocks.NewBlock([]byte{byte(i), 3, 3, 7})
curTs = mkBlock(curTs, i, stateRoot)
waitForCompaction()
}
countBlocks := func(bs blockstore.Blockstore) int {
count := 0
_ = bs.(blockstore.BlockstoreIterator).ForEachKey(func(_ cid.Cid) error {
count++
return nil
})
return count
}
// we should not have compacted due to suppression and everything should still be hot
hotCnt := countBlocks(hot)
coldCnt := countBlocks(cold)
if hotCnt != 20 {
t.Errorf("expected %d blocks, but got %d", 20, hotCnt)
}
if coldCnt != 2 {
t.Errorf("expected %d blocks, but got %d", 2, coldCnt)
}
// put some more blocks, now we should compact
for i := 10; i < 20; i++ {
stateRoot := blocks.NewBlock([]byte{byte(i), 3, 3, 7})
curTs = mkBlock(curTs, i, stateRoot)
waitForCompaction()
}
hotCnt = countBlocks(hot)
coldCnt = countBlocks(cold)
if hotCnt != 24 {
t.Errorf("expected %d blocks, but got %d", 24, hotCnt)
}
if coldCnt != 18 {
t.Errorf("expected %d blocks, but got %d", 18, coldCnt)
}
}
2021-03-05 17:55:32 +00:00
type mockChain struct {
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 {
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)}
}
2021-12-14 15:17:30 +00:00
func (b *mockStore) Has(_ context.Context, cid cid.Cid) (bool, error) {
2021-07-04 09:43:05 +00:00
b.mx.Lock()
defer b.mx.Unlock()
_, ok := b.set[cid]
return ok, nil
}
func (b *mockStore) HashOnRead(hor bool) {}
2021-12-14 15:17:30 +00:00
func (b *mockStore) Get(_ context.Context, cid cid.Cid) (blocks.Block, error) {
2021-07-04 09:43:05 +00:00
b.mx.Lock()
defer b.mx.Unlock()
blk, ok := b.set[cid]
if !ok {
return nil, blockstore.ErrNotFound
}
return blk, nil
}
2021-12-14 15:17:30 +00:00
func (b *mockStore) GetSize(ctx context.Context, cid cid.Cid) (int, error) {
blk, err := b.Get(ctx, cid)
2021-07-04 09:43:05 +00:00
if err != nil {
return 0, err
}
return len(blk.RawData()), nil
}
2021-12-14 15:17:30 +00:00
func (b *mockStore) View(ctx context.Context, cid cid.Cid, f func([]byte) error) error {
blk, err := b.Get(ctx, cid)
2021-07-04 09:43:05 +00:00
if err != nil {
return err
}
return f(blk.RawData())
}
2021-12-14 15:17:30 +00:00
func (b *mockStore) Put(_ context.Context, blk blocks.Block) error {
2021-07-04 09:43:05 +00:00
b.mx.Lock()
defer b.mx.Unlock()
b.set[blk.Cid()] = blk
return nil
}
2021-12-14 15:17:30 +00:00
func (b *mockStore) PutMany(_ context.Context, blks []blocks.Block) error {
2021-07-04 09:43:05 +00:00
b.mx.Lock()
defer b.mx.Unlock()
for _, blk := range blks {
b.set[blk.Cid()] = blk
}
return nil
}
2021-12-14 15:17:30 +00:00
func (b *mockStore) DeleteBlock(_ context.Context, cid cid.Cid) error {
2021-07-04 09:43:05 +00:00
b.mx.Lock()
defer b.mx.Unlock()
delete(b.set, cid)
return nil
}
2021-12-14 15:17:30 +00:00
func (b *mockStore) DeleteMany(_ context.Context, cids []cid.Cid) error {
2021-07-04 09:43:05 +00:00
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
}