Documentation ¶
Overview ¶
Package writeaheadlog defines and implements a general purpose, high performance write-ahead-log for performing ACID transactions to disk without sacrificing speed or latency more than fundamentally required.
Index ¶
- Constants
- Variables
- func ApplyDeleteUpdate(u Update) error
- func ApplyTruncateUpdate(u Update) error
- func ApplyUpdates(updates ...Update) error
- func ApplyWriteAtUpdate(u Update) error
- func New(path string) ([]*Transaction, *WAL, error)
- func NewWithOptions(opts Options) ([]*Transaction, *WAL, error)
- type Options
- type Transaction
- type Update
- type WAL
Constants ¶
const ( // MaxPayloadSize is the number of bytes that can fit into a single // page. For best performance, the number of pages written should be // minimized, so clients should try to keep the length of an Update's // Instructions field slightly below a multiple of MaxPayloadSize. MaxPayloadSize = pageSize - pageMetaSize )
Variables ¶
var ( // NameDeleteUpdate is the name of an idempotent update that deletes a file or // folder from a given path on disk. NameDeleteUpdate = "DELETE" // NameTruncateUpdate is the name of an idempotent update that truncates a file // to have a certain size. NameTruncateUpdate = "TRUNCATE" // NameWriteAtUpdate is the name of an idempotent update that writes data to a // file at the specified offset. If the file doesn't exist it is created. NameWriteAtUpdate = "WRITEAT" )
Functions ¶
func ApplyDeleteUpdate ¶
ApplyDeleteUpdate parses and applies a delete update.
func ApplyTruncateUpdate ¶
ApplyTruncateUpdate parses and applies a truncate update.
func ApplyUpdates ¶
ApplyUpdates can be used to apply the common update types provided by the writeaheadlog. Since it potentially applies updates to many different files it's not optimized and opens and closes a file for each update. For optimal performance write a custom applyUpdates function.
func ApplyWriteAtUpdate ¶
ApplyWriteAtUpdate parses and applies a writeat update.
func New ¶
func New(path string) ([]*Transaction, *WAL, error)
New will open a WAL. If the previous run did not shut down cleanly, a set of updates will be returned which got committed successfully to the WAL, but were never signaled as fully completed.
If no WAL exists, a new one will be created.
If in debugging mode, the WAL may return a series of updates multiple times, simulating multiple consecutive unclean shutdowns. If the updates are properly idempotent, there should be no functional difference between the multiple appearances and them just being loaded a single time correctly.
func NewWithOptions ¶
func NewWithOptions(opts Options) ([]*Transaction, *WAL, error)
NewWithOptions opens a WAL like New but takes an Options struct as an additional argument to customize some of the WAL's behavior like logging.
Types ¶
type Options ¶
type Options struct { // dependencies are used to inject special behavior into the wal by providing // custom dependencies when the wal is created and calling deps.disrupt(setting). Deps dependencies StaticLog *persist.Logger Path string // path of the underlying logFile VerboseLogging bool }
Options are a helper struct for creating a WAL. This allows for the API of the writeaheadlog to remain compatible by simply extending the Options struct with new fields as needed.
type Transaction ¶
type Transaction struct { // Updates defines the set of updates that compose the transaction. Updates []Update // contains filtered or unexported fields }
Transaction defines a series of updates that are to be performed atomically. In the event of an unclean shutdown, either all updates will have been saved together at full integrity, or none of the updates in the transaction will have been saved at all.
While multiple transactions can be safely open at the same time, multiple methods should not be called on the transaction at the same time - the WAL is thread-safe, but the transactions are not.
A Transaction is created by calling NewTransaction. Afterwards, the transactions SignalSetupComplete has to be called which returns a channel that is closed once the transaction is committed. Finally SignalUpdatesApplied needs to be called after the transaction was committed to signal a successfull transaction and free used pages.
func (*Transaction) Append ¶
func (t *Transaction) Append(updates []Update) <-chan error
Append appends additional updates to a transaction
func (*Transaction) SignalSetupComplete ¶
func (t *Transaction) SignalSetupComplete() <-chan error
SignalSetupComplete will signal to the WAL that any required setup has completed, and that the WAL can safely commit to the transaction being applied atomically.
func (*Transaction) SignalUpdatesApplied ¶
func (t *Transaction) SignalUpdatesApplied() error
SignalUpdatesApplied informs the WAL that it is safe to reuse t's pages.
type Update ¶
type Update struct { // The name of the update type. When the WAL is loaded after an unclean // shutdown, any un-committed changes will be passed as Updates back to the // caller instantiating the WAL. The caller should determine what code to // run on the the update based on the name and version. The length of the // Name is capped to 255 bytes Name string // The marshalled data directing the update. The data is an opaque set of // instructions to follow that implement and idempotent change to a set of // persistent files. A series of unclean shutdowns in rapid succession could // mean that these instructions get followed multiple times, which means // idempotent instructions are required. Instructions []byte }
Update defines a single update that can be sent to the WAL and saved atomically. Updates are sent to the wal in groups of one or more, and upon being signaled, will be saved to disk in a high-integrity, all- or-nothing fasion that follows ACID principles.
The name and version are optional, however best-practice code will make use of these fields.
When using the Update, it recommended that you typecast the Update type to another type which has methods on it for creating and applying the Update + instructions, including any special handling based on the version.
func DeleteUpdate ¶
DeleteUpdate creates an update that deletes the file at the specified path.
func TruncateUpdate ¶
TruncateUpdate is a helper function which creates a writeaheadlog update for truncating the specified file.
type WAL ¶
type WAL struct {
// contains filtered or unexported fields
}
WAL is a general purpose, high performance write-ahead-log for performing ACID transactions to disk without sacrificing speed or latency more than fundamentally required.
func (*WAL) CloseIncomplete ¶
CloseIncomplete closes the WAL and reports the number of transactions that are still uncomitted.
func (*WAL) CreateAndApplyTransaction ¶
CreateAndApplyTransaction is a helper method which creates a transaction from a given set of updates and uses the supplied updateFunc to apply it.
func (*WAL) NewTransaction ¶
func (w *WAL) NewTransaction(updates []Update) (*Transaction, error)
NewTransaction creates a transaction from a set of updates.