database

package
v0.0.0-...-6719cd2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 18, 2019 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Overview

Package database defines an abstract ordered Key/Value store that can be used as a backing store by the Disk View. Implementations should register themselves with the Register method.

Index

Constants

This section is empty.

Variables

View Source
var ErrHalt = errors.New("database: no need to continue enumerating")

ErrHalt may be returned by an Enumerate* callback to stop enumeration but not return an error.

View Source
var ErrKeyNotFound = errors.New("key not found")

ErrKeyNotFound is returned when a Read is attempted for a key that doesn't exist

Functions

func Register

func Register(f Factory, names ...string)

Register allows implementations of the DB interface to register their constructor Factory with one or more names

Types

type BulkWriter

type BulkWriter interface {
	// Buffer will cause key to be set to value sometime before Close returns.
	Buffer(key []byte, value []byte) error
	// Remove will cause key to be deleted sometime before Close returns.
	Remove(key []byte) error
	// Close must be called to finish writing and clean up resources. It may be
	// called multiple times.
	Close() error
}

BulkWriter is used for writing and removing large numbers of keys non-atomically. It's not thread-safe. Order of operation on the writer is respected, so that keys written then removed will be removed and vice versa.

type DB

type DB interface {
	Close() error
	// Read returns the stored value for the given key, or ErrKeyNotFound or unrecoverable errors.
	Read(key []byte) ([]byte, error)
	// Write sets the value for a key.
	Write(key []byte, value []byte) error
	// Writes sets the values for a set of keys.
	Writes(writes []KV) error
	// BulkWrite returns an object used for writing large numbers of keys non-atomically.
	BulkWrite() BulkWriter
	// Snapshot returns an object used for reading keys atomically.
	Snapshot() Snapshot
	// Trigger a manual compaction of storage
	Compact()
}

DB represents a local, lazily persistent, ordered key-value store. It is thread-safe, except where otherwise noted.

func New

func New(impl string, args FactoryArgs) (DB, error)

New returns a new instance of named DB implementation type, that was constructed with the supplied arguments. It'll return an error if the named impl type has not be previously registered via the Register method

type Factory

type Factory func(FactoryArgs) (DB, error)

Factory defines a method for creating new instances of DB. Specific DB engines should implement this and call Register

type FactoryArgs

type FactoryArgs struct {
	Partition partitioning.FactPartition
	Config    *config.DiskView
	Dir       string
}

FactoryArgs contains configuration data to instantiate an instance of a DB

type KV

type KV struct {
	Key   []byte
	Value []byte
}

KV contains a single Key & Value

type Snapshot

type Snapshot interface {
	// Close must be called to clean up resources.
	Close() error

	// Read returns the stored value for the given key, or ErrKeyNotFound or unrecoverable errors.
	Read(key []byte) (value []byte, err error)

	// ReadLast finds the largest key k where low <= k <= high. Returns k and its
	// value, or ErrKeyNotFound or unrecoverable errors.
	ReadLast(low, high []byte) (key []byte, value []byte, err error)

	// Enumerate calls emit with every key-value pair in order
	// for all keys from startKey (inclusive) up to endKey (exclusive).
	// startKey may be nil to start at the beginning.
	// The emit function should normally return nil to continue enumerating, or it
	// can return any error to stop immediately. Except for Halt, such errors will
	// be returned from Enumerate. If emit returns Halt, Enumerate will stop
	// immediately and return nil.
	Enumerate(startKey, endKey []byte, emit func(key []byte, value []byte) error) error

	// EnumerateKeys calls emit with every key in order
	// for all keys from startKey (inclusive) up to endKey (exclusive).
	// The emit function should normally return nil to continue enumerating, or it
	// can return any error to stop immediately. Except for Halt, such errors will
	// be returned from Enumerate. If emit returns Halt, Enumerate will stop
	// immediately and return nil.
	EnumerateKeys(startKey, endKey []byte, emit func(key []byte) error) error
}

Snapshot represents a snapshot of the Db for reading values. Its Not thread-safe. However, it is safe to call Fetch* from the Enumerate callback.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL