Simple durability, made flexible.
A simple document store protocol defined with synchronous and core.async
semantics to allow Clojuresque collection operations on associative key-value
stores, both from Clojure and ClojureScript for different backends. Data is
generally serialized with edn semantics or, if supported, as native binary blobs
and can be accessed similarly to clojure.core
functions get-in
, assoc-in
and update-in
. update-in
especially allows to run functions atomically and
returns old and new value. Each operation is run atomically and must be
consistent (in fact ACID), but further consistency is not supported (Riak,
CouchDB and many scalable solutions don’t have transactions over keys for that
reason). This is meant to be a building block for more sophisticated storage
solutions (Datomic also builds on kv-stores). A simple append-log for fast
write operations is also implemented.
- cross-platform between Clojure and ClojureScript
- lowest-common denominator interface for an associative datastructure
with
edn
semantics - thread-safety with atomicity over key operations
- consistent error handling for core.async
- fast serialization options (fressian, transit, …), independent of the underlying kv-store
- very low overhead protocol, including direct binary access for high throughput
- no additional dependencies and setup required for IndexedDB in the browser and the file backend on the JVM
- avoids blocking io, the filestore for instance will not block any thread on reading. Fully asynchronous support for writing and other stores is in the pipeline.
Konserve has a garbage collector that can be called manually when the store gets
too crowded. For that, the function konserve.gc/sweep!
allows you to provide a
cut-off date to evict old keys and a whitelist for keys that should be kept.
For synchronous execution normal exceptions will be thrown. For asynchronous
error handling we follow the semantics of go-try
and <?
introduced here. We
have the superv.async library around the error handling in core.async, but since
there is no need to push it onto the users of konserve, you just need these two
macros that properly handle the errors. <?
needs to check for an exception and
rethrow and go-try
needs to catch and pass it along as a return value such
that it does not get lost.
Run the following synchronous code if you are not using core.async in your scope:
(ns test-db
(:require [konserve.filestore :refer [connect-fs-store]]
[konserve.core :as k]))
(def store (connect-fs-store "/tmp/store" :opts {:sync? true}))
(k/assoc-in store ["foo" :bar] {:foo "baz"} {:sync? true})
(k/get-in store ["foo"] nil {:sync? true})
(k/exists? store "foo" {:sync? true})
(k/assoc-in store [:bar] 42 {:sync? true})
(k/update-in store [:bar] inc {:sync? true})
(k/get-in store [:bar] nil {:sync? true})
(k/dissoc store :bar {:sync? true})
(k/append store :error-log {:type :horrible} {:sync? true})
(k/log store :error-log {:sync? true})
(let [ba (byte-array (* 10 1024 1024) (byte 42))]
(time (k/bassoc store "banana" ba {:sync? true})))
(k/bget store "banana"
(fn [{is :input-stream}]
(your-read-does-all-work-here is))
{:sync? true})
In a ClojureScript REPL you can evaluate the expressions from the REPL each wrapped in a go-block.
(ns test-db
(:require [konserve.memory :refer [new-mem-store]]
[clojure.core.async :refer [go <!]]))
(go (def my-db (<! (new-mem-store)))) ;; or (go (def my-db (<!
From a Clojure REPL run the following functions for the core.async variants of the code.
(ns test-db
(:require [konserve.filestore :refer [connect-fs-store]]
[konserve.core :as k]
[clojure.core.async :refer [go <!]]))
(go
(def store (<! (connect-fs-store "/tmp/store")))
(<! (k/assoc-in store ["foo" :bar] {:foo "baz"}))
(<! (k/get-in store ["foo"]))
(<! (k/exists? store "foo"))
(<! (k/assoc-in store [:bar] 42))
(<! (k/update-in store [:bar] inc))
(<! (k/get-in store [:bar]))
(<! (k/dissoc store :bar))
(<! (k/append store :error-log {:type :horrible}))
(<! (k/log store :error-log))
(let [ba (byte-array (* 10 1024 1024) (byte 42))]
(time (<! (k/bassoc store "banana" ba)))))
For simple purposes a memory store wrapping an Atom is implemented for Clojure and ClojureScript.
Usage:
(ns test-db
(:require [konserve.memory :refer [new-mem-store]]
[konserve.core :as k]))
(def my-db (new-mem-store))
A file-system store in Clojure and for Node are provided as elementary reference implementations for the two most important platforms. No setup and no additional dependencies are needed.
The file-system store currently uses fressian in Clojure and fress in
ClojureScript and is quite efficient. Both implementations use the same on-disk
format and can load the same store (but not concurrently). It also allows to
access values as a normal file-system file, e.g. to open it with a native
database like HDF5 in Java. You can decide not to fsync on every write by a
configuration of {:sync-blob? false}
, if a potential, but unlikely data loss
is not critical for you (e.g. for a session store). Note that the database will
not be corrupted in this case, you can just lose some write operations before
the crash.
Usage:
(ns test-db
(:require [#?(:clj konserve.filestore
:cljs konserve.node-filestore) :refer [connect-fs-store]]
[konserve.core :as k]))
(def my-folder "path/to/folder")
(def my-db (connect-fs-store my-folder))
IndexedDB is provided as reference implementation for ClojureScript browser backends. The IndexedDB store is restricted to the async api only.
Usage:
(ns test-db
(:require [clojure.core.async :refer [go]]
[konserve.indexeddb :refer [connect-idb-store]]
[konserve.core :as k]))
(go (def my-idb-store (<! (connect-idb-store "example-db"))))
We recently updated konserve not only to provide the option to choose between synchronous and asynchronous execution, but also to provide protocols that simplify the implementation of external backends. Unfortunately most of the external backends are deprecated now because of this.
Please let us know if you are interested in other backends or if you need help with implementing one.
The following projects are incompatible with the latest konserve release, but describe the usage of the underlying store API and could still be helpful to implement new backends for the underlying store:
- LevelDB: konserve-leveldb.
- CouchDB: konserve-clutch.
- Riak: konserve-welle.
- System component for internal backends: system component
Different formats for edn
serialization like fressian, transit or a simple
pr-str
version are supported and can be combined with different stores. Stores
have a reasonable default setting. You can also extend the serialization
protocol to other formats if you need it. You can provide incognito support for
records, if you need them.
You can read and write custom records according to incognito.
Compression and encryption are supported by the default store implementation that is used by all current backends. They can be activated in the store configuration as follows:
{:encryptor {:type :aes
:key "s3cr3t"}
:compressor {:type :lz4}}
LZ4 compression is currently only supported on the JVM. AES encryption is supported on both JVM and JS targets with the same cold storage format, i.e. the same store can be read and written from Clojure and ClojureScript runtimes. We use AES/CBC/PKCS{5/7}Padding with 256 bit and a different salt for each written value.
We provide a backend implementation guide.
- The protocol is used in production and originates as an elementary storage protocol for replikativ and datahike.
- kampbell maps collections of entities to konserve and enforces specs.
konserve assumes currently that it accesses its keyspace in the store exclusively. It uses hasch to support arbitrary edn keys and hence does not normally clash with outside usage even when the same keys are used. To support multiple konserve clients in the store the backend has to support locking and proper transactions on keys internally, which is the case for backends like CouchDB, Redis and Riak.
- implement dual async+sync code expansion
- generalize filestore logic to ease backend development
- introduce common storage layouts and store serialization context with each key value pair, this will facilitate migration code in the future
- implementation for the filestore (thanks to @FerdiKuehne)
- introduce metadata to track edit timestamps
- add garbage collector
- introduce superv.async error handling
- extend API to be more like Clojure’s (thanks to @MrEbbinghaus)
- add logging
- update on ClojureScript support still pending
- fix nested value extraction in filestore, thanks to @csm
- cljs fressian support
- filestore for node.js
- experimental caching support
- improved filestore with separate metadata storage
- experimental clojure.core.cache support
- fix exists for binary
- friendly printing of stores on JVM
- fix a racecondition in the lock creation
- do not drain the threadpool for the filestore
- support distinct dissoc (not implicit key-removal on assoc-in store key nil)
- bump deps
- make fsync configurable
- remove full.async until binding issues are resolved
- simplify and fix indexeddb
- do clean locking with syntactic macro sugar
- fix cljs support
- store the key in the filestore and allow to iterate stored keys (not binary atm.)
- implement append functions to have high throughput append-only logs
- use core.async based locking on top-level API for all stores
- allow to delete a file-store
- experimental JavaScript bindings
- use fixed incognito version
- fix return value of assoc-in
- Wrap protocols in proper Clojure functions in the core namespace.
- Implement assoc-in in terms of update-in
- Introduce serialiasation protocol with the help of incognito and decouple stores
- filestore: disable cache
- factor out all tagged literal functions to incognito
- use reader conditionals
- bump deps
- filestore: flush output streams, fsync on fs operations
- filestore can be considered beta quality
- couchdb: add -exists?
- couchdb: move to new project
- remove logging and return ex-info exceptions in go channel
- filestore: locking around java strings is a bad idea, use proper lock objects
- filestore: do io inside async/thread (like async’s pipeline) to not block the async threadpool
- filestore: implement a naive cache (flushes once > 1000 values)
- filestore, indexeddb: allow to safely custom deserialize file-inputstream in transaction/lock
- filestore, indexeddb, memstore: implement -exists?
- filestore: fix fressian collection types for clojure, expose read-handlers/write-handlers
- filestore: fix -update-in behaviour for nested values
- filestore: fix rollback renaming order
- experimental native ACID file-store for Clojure
- native binary blob support for file-store, IndexedDB and mem-store
- Björn Ebbinghaus
- Daniel Szmulewicz
- Konrad Kühne
- Christian Weilbach
Copyright © 2014-2023 Christian Weilbach and contributors
Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.