No description
Find a file
Martin Sumner 6223b801f3
Mas d31 i410looptoclose (#421)
* Mas i410 looptoclose (#420)

* Stop waiting full SHUTDOWN_PAUSE

If there is a snapshot outstanding at shutdown time, there was a wait of SHUTDOWN_PAUSE to give the snapshot time to close down.

This causes an issue in kv_index_tictactree when rebuilds complete, when an exchange was in flight at the point the rebuild completed - the aae_controller will become blocked for the full shutdown pause, whilst it waits for the replaced key store to be closed.

This change is to loop within the shutdown pause, so that if the snapshot supporting the exchange is closed, the paused bookie can close more quickly (unblocking the controller).

Without this fix, there are intermittent issues in kv_index_tictactree's mockvnode_SUITE tests.

* Address test reliability

Be a bit clearer with waiting round seconds,  Was intermittently failing on QR4 previously (but QR5 1s later was always OK).

* Update iterator_SUITE.erl

* Refine test assertion

At Stage C there might be 0 files left, in which case equality with Stage D result is ok.
2023-11-10 15:04:47 +00:00
.github/workflows Mas i335 otp24 (#336) 2021-05-25 13:41:20 +01:00
docs Develop 3.1 d30update (#386) 2022-12-18 20:18:03 +00:00
include Mas d31 i416 (#418) 2023-11-07 14:58:43 +00:00
priv Mas d31 i416 (#418) 2023-11-07 14:58:43 +00:00
src Mas d31 i410looptoclose (#421) 2023-11-10 15:04:47 +00:00
test Mas d31 i410looptoclose (#421) 2023-11-10 15:04:47 +00:00
.gitignore Update .gitignore 2019-01-25 10:24:47 +00:00
LICENSE Initial commit 2015-04-30 09:56:16 +01:00
README.md Mas i340 doublel3 d31 (#347) 2021-08-23 17:18:45 +01:00
rebar.config Mas p401 coverage (#404) 2023-03-13 11:46:08 +00:00
rebar3 Mas i335 otp24 (#336) 2021-05-25 13:41:20 +01:00

Leveled - An Erlang Key-Value Store

Introduction

Build Status

Leveled is a simple Key-Value store based on the concept of Log-Structured Merge Trees, with the following characteristics:

  • Optimised for workloads with larger values (e.g. > 4KB).

  • Explicitly supports HEAD requests in addition to GET requests:

    • Splits the storage of value between keys/metadata and body (assuming some definition of metadata is provided);
    • Allows for the application to define what constitutes object metadata and what constitutes the body (value-part) of the object - and assign tags to objects to manage multiple object-types with different extraction rules;
    • Stores keys/metadata in a merge tree and the full object in a journal of CDB files
    • allowing for HEAD requests which have lower overheads than GET requests; and
    • queries which traverse keys/metadatas to be supported with fewer side effects on the page cache than folds over keys/objects.
  • Support for tagging of object types and the implementation of alternative store behaviour based on type.

    • Allows for changes to extract specific information as metadata to be returned from HEAD requests;
    • Potentially usable for objects with special retention or merge properties.
  • Support for low-cost clones without locking to provide for scanning queries (e.g. secondary indexes).

    • Low cost specifically where there is a need to scan across keys and metadata (not values).
  • Written in Erlang as a message passing system between Actors.

The store has been developed with a focus on being a potential backend to a Riak KV database, rather than as a generic store. It is intended to be a fully-featured backend - including support for secondary indexes, multiple fold types and auto-expiry of objects.

An optimised version of Riak KV has been produced in parallel which will exploit the availability of HEAD requests (to access object metadata including version vectors), where a full GET is not required. This, along with reduced write amplification when compared to leveldb, is expected to offer significant improvement in the volume and predictability of throughput for workloads with larger (> 4KB) object sizes, as well as reduced tail latency.

There may be more general uses of Leveled, with the following caveats:

  • Leveled should be extended to define new tags that specify what metadata is to be extracted for the inserted objects (or to override the behaviour for the ?STD_TAG). Without this, there will be limited scope to take advantage of the relative efficiency of HEAD and FOLD_HEAD requests.
  • If objects are small, the head_only mode may be used, which will cease separation of object body from header and use the Key/Metadata store as the only long-term persisted store. In this mode all of the object is treated as Metadata, and the behaviour is closer to that of the leveldb LSM-tree, although with higher median latency.

More Details

For more details on the store:

  • An introduction to Leveled covers some context to the factors motivating design trade-offs in the store.

  • The design overview explains the actor model used and the basic flow of requests through the store.

  • Future work covers new features being implemented at present, and improvements necessary to make the system production ready.

  • There is also a "Why" section looking at lower level design choices and the rationale that supports them.

Feedback

Please create an issue if you have any suggestions. You can ping me @masleeds if you wish

Running Leveled

Unit and current tests in leveled should run with rebar3.

A new database can be started by running

{ok, Bookie} = leveled_bookie:book_start(StartupOptions)   

This will start a new Bookie. It will start and look for existing data files, under the RootPath, and start empty if none exist. Further information on startup options can be found here here.

The book_start method should respond once startup is complete. The leveled_bookie module includes the full API for external use of the store.

Running in Riak requires Riak 2.9 or beyond, which is available from January 2019.

There are three main branches:

develop-3.1 - default: Target for the Riak 3.1 release with support for OTP 22 and OTP 24;

develop-3.0: Used in the Riak 3.0 release with support for OTP 20 and OTP 22;

develop-2.9: Used in the Riak 2.9 release with support for OTP R16 through to OTP 20.

Contributing

In order to contribute to leveled, fork the repository, make a branch for your changes, and open a pull request. The acceptance criteria for updating leveled is that it passes rebar3 dialyzer, xref, eunit, and ct with 100% coverage.

To have rebar3 execute the full set of tests, run:

rebar3 as test do xref, dialyzer, cover --reset, eunit --cover, ct --cover, cover --verbose

For those with a Quickcheck license, property-based tests can also be run using:

rebar3 as eqc do eunit --module=leveled_simpleeqc, eunit --module=leveled_statemeqc