-
Notifications
You must be signed in to change notification settings - Fork 179
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Badger] Add universal database operations #6465
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,71 @@ | ||||||||||||||||||
package badgerimpl | ||||||||||||||||||
|
||||||||||||||||||
import ( | ||||||||||||||||||
"bytes" | ||||||||||||||||||
|
||||||||||||||||||
"github.com/dgraph-io/badger/v2" | ||||||||||||||||||
|
||||||||||||||||||
"github.com/onflow/flow-go/storage" | ||||||||||||||||||
) | ||||||||||||||||||
|
||||||||||||||||||
type badgerIterator struct { | ||||||||||||||||||
iter *badger.Iterator | ||||||||||||||||||
lowerBound []byte | ||||||||||||||||||
upperBound []byte | ||||||||||||||||||
} | ||||||||||||||||||
|
||||||||||||||||||
var _ storage.Iterator = (*badgerIterator)(nil) | ||||||||||||||||||
|
||||||||||||||||||
func newBadgerIterator(db *badger.DB, startPrefix, endPrefix []byte, ops storage.IteratorOption) *badgerIterator { | ||||||||||||||||||
options := badger.DefaultIteratorOptions | ||||||||||||||||||
if ops.IterateKeyOnly { | ||||||||||||||||||
options.PrefetchValues = false | ||||||||||||||||||
} | ||||||||||||||||||
|
||||||||||||||||||
tx := db.NewTransaction(false) | ||||||||||||||||||
iter := tx.NewIterator(options) | ||||||||||||||||||
|
||||||||||||||||||
lowerBound, upperBound := storage.StartEndPrefixToLowerUpperBound(startPrefix, endPrefix) | ||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Note, we are applying the same approach as pebble to compute the exclusive upperBound here. This allows us to get rid of the global |
||||||||||||||||||
|
||||||||||||||||||
return &badgerIterator{ | ||||||||||||||||||
iter: iter, | ||||||||||||||||||
lowerBound: lowerBound, | ||||||||||||||||||
upperBound: upperBound, | ||||||||||||||||||
} | ||||||||||||||||||
} | ||||||||||||||||||
|
||||||||||||||||||
// First seeks to the smallest key greater than or equal to the given key. | ||||||||||||||||||
func (i *badgerIterator) First() { | ||||||||||||||||||
i.iter.Seek(i.lowerBound) | ||||||||||||||||||
} | ||||||||||||||||||
|
||||||||||||||||||
// Valid returns whether the iterator is positioned at a valid key-value pair. | ||||||||||||||||||
func (i *badgerIterator) Valid() bool { | ||||||||||||||||||
// if it's beyond the upper bound, it's invalid | ||||||||||||||||||
if !i.iter.Valid() { | ||||||||||||||||||
return false | ||||||||||||||||||
} | ||||||||||||||||||
key := i.iter.Item().Key() | ||||||||||||||||||
// "< 0" means "key < upperBound" | ||||||||||||||||||
valid := bytes.Compare(key, i.upperBound) < 0 | ||||||||||||||||||
return valid | ||||||||||||||||||
Comment on lines
+44
to
+51
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't understand what is the difference between flow-go/storage/operation/badgerimpl/iterator.go Lines 44 to 47 in 17972e0
you are documenting in line 44:
so why do we do the check again for the upper bound: flow-go/storage/operation/badgerimpl/iterator.go Lines 48 to 51 in 17972e0
Please document the answer in the implementation (not as a reply to my PR comment). Thanks |
||||||||||||||||||
} | ||||||||||||||||||
Comment on lines
+42
to
+52
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
lowerBound, upperBound := storage.StartEndPrefixToLowerUpperBound(startPrefix, endPrefix) |
startPrefix, endPrefix := []byte{0x10}, []byte{0xff}
the function StartEndPrefixToLowerUpperBound
will turn this into nil
(empty list) for the endPrefix
.Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
package badgerimpl | ||
|
||
import ( | ||
"errors" | ||
"io" | ||
|
||
"github.com/dgraph-io/badger/v2" | ||
|
||
"github.com/onflow/flow-go/module/irrecoverable" | ||
"github.com/onflow/flow-go/storage" | ||
) | ||
|
||
type dbReader struct { | ||
db *badger.DB | ||
} | ||
|
||
type noopCloser struct{} | ||
|
||
var _ io.Closer = (*noopCloser)(nil) | ||
|
||
func (noopCloser) Close() error { return nil } | ||
|
||
// Get gets the value for the given key. It returns ErrNotFound if the DB | ||
// does not contain the key. | ||
// other errors are exceptions | ||
// | ||
// The caller should not modify the contents of the returned slice, but it is | ||
// safe to modify the contents of the argument after Get returns. The | ||
// returned slice will remain valid until the returned Closer is closed. On | ||
// success, the caller MUST call closer.Close() or a memory leak will occur. | ||
func (b dbReader) Get(key []byte) ([]byte, io.Closer, error) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please document error returns |
||
tx := b.db.NewTransaction(false) | ||
defer tx.Discard() | ||
|
||
item, err := tx.Get(key) | ||
if err != nil { | ||
if errors.Is(err, badger.ErrKeyNotFound) { | ||
return nil, nil, storage.ErrNotFound | ||
} | ||
return nil, nil, irrecoverable.NewExceptionf("could not load data: %w", err) | ||
} | ||
|
||
value, err := item.ValueCopy(nil) | ||
if err != nil { | ||
return nil, nil, irrecoverable.NewExceptionf("could not load value: %w", err) | ||
} | ||
|
||
return value, noopCloser{}, nil | ||
} | ||
|
||
// NewIter returns a new Iterator for the given key prefix range [startPrefix, endPrefix], both inclusive. | ||
// Specifically, all keys that meet ANY of the following conditions are included in the iteration: | ||
// - have a prefix equal to startPrefix OR | ||
// - have a prefix equal to the endPrefix OR | ||
// - have a prefix that is lexicographically between startPrefix and endPrefix | ||
func (b dbReader) NewIter(startPrefix, endPrefix []byte, ops storage.IteratorOption) (storage.Iterator, error) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please document error returns |
||
return newBadgerIterator(b.db, startPrefix, endPrefix, ops), nil | ||
} | ||
|
||
// ToReader is a helper function to convert a *badger.DB to a Reader | ||
func ToReader(db *badger.DB) storage.Reader { | ||
return dbReader{db} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
package badgerimpl | ||
|
||
import ( | ||
"fmt" | ||
|
||
"github.com/dgraph-io/badger/v2" | ||
|
||
"github.com/onflow/flow-go/storage" | ||
"github.com/onflow/flow-go/storage/operation" | ||
op "github.com/onflow/flow-go/storage/operation" | ||
) | ||
|
||
type ReaderBatchWriter struct { | ||
globalReader storage.Reader | ||
batch *badger.WriteBatch | ||
|
||
callbacks op.Callbacks | ||
} | ||
|
||
var _ storage.ReaderBatchWriter = (*ReaderBatchWriter)(nil) | ||
|
||
// GlobalReader returns a database-backed reader which reads the latest committed global database state ("read-committed isolation"). | ||
// This reader will not read writes written to ReaderBatchWriter.Writer until the write batch is committed. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. typo?
|
||
// This reader may observe different values for the same key on subsequent reads. | ||
func (b *ReaderBatchWriter) GlobalReader() storage.Reader { | ||
return b.globalReader | ||
} | ||
|
||
// Writer returns a writer associated with a batch of writes. The batch is pending until it is committed. | ||
// When we `Write` into the batch, that write operation is added to the pending batch, but not committed. | ||
// The commit operation is atomic w.r.t. the batch; either all writes are applied to the database, or no writes are. | ||
// Note: | ||
// - The writer cannot be used concurrently for writing. | ||
func (b *ReaderBatchWriter) Writer() storage.Writer { | ||
return b | ||
} | ||
|
||
// BadgerWriteBatch returns the badger write batch | ||
func (b *ReaderBatchWriter) BadgerWriteBatch() *badger.WriteBatch { | ||
return b.batch | ||
} | ||
|
||
// AddCallback adds a callback to execute after the batch has been flush | ||
// regardless the batch update is succeeded or failed. | ||
// The error parameter is the error returned by the batch update. | ||
func (b *ReaderBatchWriter) AddCallback(callback func(error)) { | ||
b.callbacks.AddCallback(callback) | ||
} | ||
|
||
// Commit flushes the batch to the database. | ||
// No errors expected during normal operation | ||
func (b *ReaderBatchWriter) Commit() error { | ||
err := b.batch.Flush() | ||
|
||
b.callbacks.NotifyCallbacks(err) | ||
|
||
return err | ||
} | ||
|
||
func WithReaderBatchWriter(db *badger.DB, fn func(storage.ReaderBatchWriter) error) error { | ||
batch := NewReaderBatchWriter(db) | ||
|
||
err := fn(batch) | ||
if err != nil { | ||
// fn might use lock to ensure concurrent safety while reading and writing data | ||
// and the lock is usually released by a callback. | ||
// in other words, fn might hold a lock to be released by a callback, | ||
// we need to notify the callback for the locks to be released before | ||
// returning the error. | ||
batch.callbacks.NotifyCallbacks(err) | ||
return err | ||
} | ||
|
||
return batch.Commit() | ||
} | ||
|
||
func NewReaderBatchWriter(db *badger.DB) *ReaderBatchWriter { | ||
return &ReaderBatchWriter{ | ||
globalReader: ToReader(db), | ||
batch: db.NewWriteBatch(), | ||
} | ||
} | ||
|
||
var _ storage.Writer = (*ReaderBatchWriter)(nil) | ||
|
||
// Set sets the value for the given key. It overwrites any previous value | ||
// for that key; a DB is not a multi-map. | ||
// | ||
// It is safe to modify the contents of the arguments after Set returns. | ||
// No errors expected during normal operation | ||
func (b *ReaderBatchWriter) Set(key, value []byte) error { | ||
return b.batch.Set(key, value) | ||
} | ||
|
||
// Delete deletes the value for the given key. Deletes are blind all will | ||
// succeed even if the given key does not exist. | ||
// | ||
// It is safe to modify the contents of the arguments after Delete returns. | ||
// No errors expected during normal operation | ||
func (b *ReaderBatchWriter) Delete(key []byte) error { | ||
return b.batch.Delete(key) | ||
} | ||
|
||
// DeleteByRange removes all keys with a prefix that falls within the | ||
// range [start, end], both inclusive. | ||
// No errors expected during normal operation | ||
func (b *ReaderBatchWriter) DeleteByRange(globalReader storage.Reader, startPrefix, endPrefix []byte) error { | ||
err := operation.IterateKeysInPrefixRange(startPrefix, endPrefix, func(key []byte) error { | ||
err := b.batch.Delete(key) | ||
if err != nil { | ||
return fmt.Errorf("could not add key to delete batch (%v): %w", key, err) | ||
} | ||
return nil | ||
})(globalReader) | ||
|
||
if err != nil { | ||
return fmt.Errorf("could not find keys by range to be deleted: %w", err) | ||
} | ||
return nil | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package operation | ||
|
||
import "sync" | ||
|
||
type Callbacks struct { | ||
sync.Mutex // protect callbacks | ||
callbacks []func(error) | ||
} | ||
|
||
func (b *Callbacks) AddCallback(callback func(error)) { | ||
b.Lock() | ||
defer b.Unlock() | ||
|
||
b.callbacks = append(b.callbacks, callback) | ||
} | ||
|
||
func (b *Callbacks) NotifyCallbacks(err error) { | ||
b.Lock() | ||
defer b.Unlock() | ||
|
||
for _, callback := range b.callbacks { | ||
callback(err) | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
package operation | ||
|
||
import ( | ||
"encoding/binary" | ||
"fmt" | ||
|
||
"github.com/onflow/flow-go/model/flow" | ||
) | ||
|
||
// EncodeKeyPart encodes a value to be used as a part of a key to be stored in storage. | ||
func EncodeKeyPart(v interface{}) []byte { | ||
switch i := v.(type) { | ||
case uint8: | ||
return []byte{i} | ||
case uint32: | ||
b := make([]byte, 4) | ||
binary.BigEndian.PutUint32(b, i) | ||
return b | ||
case uint64: | ||
b := make([]byte, 8) | ||
binary.BigEndian.PutUint64(b, i) | ||
return b | ||
case string: | ||
return []byte(i) | ||
case flow.Role: | ||
return []byte{byte(i)} | ||
case flow.Identifier: | ||
return i[:] | ||
case flow.ChainID: | ||
return []byte(i) | ||
default: | ||
panic(fmt.Sprintf("unsupported type to convert (%T)", v)) | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fix linter error