Crux is an open source document database with bitemporal graph queries. Java, Clojure and HTTP APIs are provided.
Crux follows an unbundled architectural approach, which means that it is assembled from highly decoupled components through the use of semi-immutable logs at the core of its design. Logs can currently be stored in LMDB or RocksDB for standalone single-node deployments, or using Kafka for clustered deployments. Indexes can currently be stored using LMDB or RocksDB.
Crux is built for efficient bitemporal indexing of schemaless documents, and this simplicity enables broad possibilities for creating layered extensions on top, such as to add additional transaction, query, and schema capabilities. Crux does not currently support SQL but it does provide an EDN-based Datalog query interface that can be used to express a comprehensive range of SQL-like join operations as well as recursive graph traversals.
Crux has been available as a Public Alpha since 19th April 2019. The Public Alpha period will continue until Crux is released as a Generally Available open source software product by JUXT later in 2019.
Crux embraces the transaction log as the central point of coordination when running as a distributed system. Use of a separate document log enables simple eviction of active and historical data to assist with technical compliance for information privacy regulations.
What do we have to gain from turning the database inside out? Simpler code, better scalability, better robustness, lower latency, and more flexibility for doing interesting things with data.
— Martin Kleppmann (2014)
This design makes it feasible and desirable to embed Crux nodes directly in your application processes, which reduces deployment complexity and eliminates round-trip overheads when running complex application queries.
Crux is fundamentally a store of versioned EDN documents. The only requirement
is that you specify a valid :crux.db/id
key. The fields within these
documents are automatically indexed as Entity-Attribute-Value triples to
support efficient graph queries. Document versions are indexed by valid-time
in addition to transaction-time
which allows you to make updates into the
past, present or future.
Crux supports a Datalog query interface for reading data and traversing
relationships across all documents. Queries are executed so that the results
are lazily streamed from the underlying indexes. Queries can be made against
point-in-time snapshots of your database (by specifying transaction-time
and/or
valid-time
).
Please visit our official documentation to get started with Crux.
See standalone webservice example for a demo Docker container.
Crux is split across multiple projects which are maintained within this
repository. crux-core
contains the main functional components of Crux along
with interfaces for the pluggable storage components (Kafka, LMDB, RocksDB
etc.). Implementations of these storage options are located in their own
projects.
Project directories are published to Clojars independently (with corresponding
names) so that you can maintain granular dependencies on precisely the
individual components needed for your application. Alternatively you can depend
on crux-uberjar
whilst in development to spend less time worrying about which
parts of Crux you need now or in the future.
For scalability and durability.
Useful for experimentation and testing.
Better read performance for intensive querying.
Better write performance for heavy ingestion.
crux-rocksdb
is a good default choice.
Aggregation decorator and experimental API composition.
Import RDF data and run a subset of SPARQL queries.
One dependency to rule them all.
Please note that Clojure is not required when using Crux. HTTP and Java APIs are also available.
Launch a REPL using the very latest Clojars -SNAPSHOT
release:
clj -Sdeps '{:deps {juxt/crux-core {:mvn/version "RELEASE"}}}'
Start a standalone in-memory (i.e. not persisted anywhere) node:
(require '[crux.api :as crux])
(import '[crux.api ICruxAPI])
(def my-node
(crux/start-standalone-node
{:kv-backend "crux.kv.memdb.MemKv" ; see docs for LMDB/RocksDB storage options
:event-log-dir "data/event-log-dir-1"
:db-dir "data/db-dir-1"}))
put
a document:
(def my-document
{:crux.db/id :some/fancy-id
:arbitrary-key ["an untyped value" 123]
{:maps "can be" :keys 2} {"and values" :can-be-arbitrarily-nested}})
(crux/submit-tx my-node [[:crux.tx/put my-document]])
Take an immutable snapshot of the database:
(def my-db (crux/db my-node))
Retrieve the current version of the document:
(crux/entity my-db :some/fancy-id)
To run a REPL that includes depedencies for all components of Crux, cd
into
crux-dev
and run lein repl
The recommended way of running the primary tests is lein build
.
The MIT License (MIT)
Copyright © 2018-2019 JUXT LTD.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
A list of compiled dependencies and corresponding licenses is available here.
Can you improve this documentation? These fine people already did:
Jon Pither, Jeremy Taylor, Håkan Råberg, Martin Clausen, Ivan Fedorov, Roxolan0 & Malcolm SparksEdit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close