2019-01-24 20:15:10 +00:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
2018-04-17 04:50:20 +01:00
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
2018-04-10 22:46:48 +01:00
|
|
|
package boltdb
|
|
|
|
|
|
|
|
import (
|
2019-06-05 15:23:10 +01:00
|
|
|
"context"
|
2018-10-25 18:11:28 +01:00
|
|
|
"fmt"
|
2018-04-10 22:46:48 +01:00
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
2018-09-05 17:10:35 +01:00
|
|
|
"path/filepath"
|
2018-04-10 22:46:48 +01:00
|
|
|
"testing"
|
2018-04-21 00:54:18 +01:00
|
|
|
|
2018-12-21 10:54:20 +00:00
|
|
|
"github.com/zeebo/errs"
|
2019-06-13 13:46:08 +01:00
|
|
|
|
2018-10-25 18:11:28 +01:00
|
|
|
"storj.io/storj/storage"
|
2018-09-05 17:10:35 +01:00
|
|
|
"storj.io/storj/storage/testsuite"
|
2018-04-10 22:46:48 +01:00
|
|
|
)
|
|
|
|
|
2018-09-05 17:10:35 +01:00
|
|
|
func TestSuite(t *testing.T) {
|
2018-09-11 14:57:12 +01:00
|
|
|
tempdir, err := ioutil.TempDir("", "storj-bolt")
|
2018-05-07 18:01:53 +01:00
|
|
|
if err != nil {
|
2018-09-05 17:10:35 +01:00
|
|
|
t.Fatal(err)
|
2018-06-29 21:06:25 +01:00
|
|
|
}
|
2018-09-11 14:13:25 +01:00
|
|
|
defer func() { _ = os.RemoveAll(tempdir) }()
|
2018-06-29 21:06:25 +01:00
|
|
|
|
2018-09-05 17:10:35 +01:00
|
|
|
dbname := filepath.Join(tempdir, "bolt.db")
|
|
|
|
store, err := New(dbname, "bucket")
|
2018-04-10 22:46:48 +01:00
|
|
|
if err != nil {
|
2018-09-05 17:10:35 +01:00
|
|
|
t.Fatalf("failed to create db: %v", err)
|
2018-04-10 22:46:48 +01:00
|
|
|
}
|
2018-09-05 17:10:35 +01:00
|
|
|
defer func() {
|
|
|
|
if err := store.Close(); err != nil {
|
|
|
|
t.Fatalf("failed to close db: %v", err)
|
|
|
|
}
|
|
|
|
}()
|
2018-04-10 22:46:48 +01:00
|
|
|
|
2020-01-22 19:00:46 +00:00
|
|
|
store.SetLookupLimit(500)
|
2018-09-05 17:10:35 +01:00
|
|
|
testsuite.RunTests(t, store)
|
2018-06-29 21:06:25 +01:00
|
|
|
}
|
2018-04-10 22:46:48 +01:00
|
|
|
|
2018-09-05 17:10:35 +01:00
|
|
|
func BenchmarkSuite(b *testing.B) {
|
2018-09-11 14:57:12 +01:00
|
|
|
tempdir, err := ioutil.TempDir("", "storj-bolt")
|
2018-06-29 21:06:25 +01:00
|
|
|
if err != nil {
|
2018-09-05 17:10:35 +01:00
|
|
|
b.Fatal(err)
|
2018-04-10 22:46:48 +01:00
|
|
|
}
|
2018-09-11 14:13:25 +01:00
|
|
|
defer func() { _ = os.RemoveAll(tempdir) }()
|
2018-04-10 22:46:48 +01:00
|
|
|
|
2018-09-05 17:10:35 +01:00
|
|
|
dbname := filepath.Join(tempdir, "bolt.db")
|
|
|
|
store, err := New(dbname, "bucket")
|
2018-04-10 22:46:48 +01:00
|
|
|
if err != nil {
|
2018-09-05 17:10:35 +01:00
|
|
|
b.Fatalf("failed to create db: %v", err)
|
2018-04-10 22:46:48 +01:00
|
|
|
}
|
2018-09-05 17:10:35 +01:00
|
|
|
defer func() {
|
|
|
|
if err := store.Close(); err != nil {
|
|
|
|
b.Fatalf("failed to close db: %v", err)
|
2018-08-03 14:15:52 +01:00
|
|
|
}
|
2018-09-05 17:10:35 +01:00
|
|
|
}()
|
2018-08-03 14:15:52 +01:00
|
|
|
|
2018-09-05 17:10:35 +01:00
|
|
|
testsuite.RunBenchmarks(b, store)
|
2018-08-03 14:15:52 +01:00
|
|
|
}
|
2018-10-18 17:20:23 +01:00
|
|
|
|
2018-10-25 18:11:28 +01:00
|
|
|
type boltLongBenchmarkStore struct {
|
|
|
|
*Client
|
|
|
|
dirPath string
|
|
|
|
}
|
|
|
|
|
2019-09-24 19:06:22 +01:00
|
|
|
func (store *boltLongBenchmarkStore) BulkImport(ctx context.Context, iter storage.Iterator) (err error) {
|
2018-10-25 18:11:28 +01:00
|
|
|
// turn off syncing during import
|
|
|
|
oldval := store.db.NoSync
|
|
|
|
store.db.NoSync = true
|
|
|
|
defer func() { store.db.NoSync = oldval }()
|
|
|
|
|
|
|
|
var item storage.ListItem
|
2019-06-05 15:23:10 +01:00
|
|
|
for iter.Next(ctx, &item) {
|
|
|
|
if err := store.Put(ctx, item.Key, item.Value); err != nil {
|
2021-05-14 16:05:42 +01:00
|
|
|
return fmt.Errorf("Failed to insert data (%q, %q): %w", item.Key, item.Value, err)
|
2018-10-25 18:11:28 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return store.db.Sync()
|
|
|
|
}
|
|
|
|
|
2019-09-24 19:06:22 +01:00
|
|
|
func (store *boltLongBenchmarkStore) BulkDeleteAll(ctx context.Context) error {
|
2018-10-25 18:11:28 +01:00
|
|
|
// do nothing here; everything will be cleaned up later after the test completes. it's not
|
|
|
|
// worth it to wait for BoltDB to remove every key, one by one, and we can't just
|
|
|
|
// os.RemoveAll() the whole test directory at this point because those files are still open
|
|
|
|
// and unremoveable on Windows.
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-09-24 19:06:22 +01:00
|
|
|
var _ testsuite.BulkImporter = &boltLongBenchmarkStore{}
|
|
|
|
var _ testsuite.BulkCleaner = &boltLongBenchmarkStore{}
|
|
|
|
|
2018-10-25 18:11:28 +01:00
|
|
|
func BenchmarkSuiteLong(b *testing.B) {
|
|
|
|
tempdir, err := ioutil.TempDir("", "storj-bolt")
|
|
|
|
if err != nil {
|
|
|
|
b.Fatal(err)
|
|
|
|
}
|
|
|
|
defer func() {
|
|
|
|
if err := os.RemoveAll(tempdir); err != nil {
|
|
|
|
b.Fatal(err)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
dbname := filepath.Join(tempdir, "bolt.db")
|
|
|
|
store, err := New(dbname, "bucket")
|
|
|
|
if err != nil {
|
|
|
|
b.Fatalf("failed to create db: %v", err)
|
|
|
|
}
|
|
|
|
defer func() {
|
2018-12-21 10:54:20 +00:00
|
|
|
if err := errs.Combine(store.Close(), os.RemoveAll(tempdir)); err != nil {
|
2018-10-25 18:11:28 +01:00
|
|
|
b.Fatalf("failed to close db: %v", err)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
longStore := &boltLongBenchmarkStore{
|
|
|
|
Client: store,
|
|
|
|
dirPath: tempdir,
|
|
|
|
}
|
|
|
|
testsuite.BenchmarkPathOperationsInLargeDb(b, longStore)
|
|
|
|
}
|