juxt/crux-rocksdb {:mvn/version "20.09-1.11.0-beta"}
RocksDB is often used as the data store for Crux’s query indices, but can also be used as a transaction log and/or document store in single node clusters.
In order to use RocksDB within Crux, you must first add RocksDB as a project dependency:
juxt/crux-rocksdb {:mvn/version "20.09-1.11.0-beta"}
<dependency>
<groupId>juxt</groupId>
<artifactId>crux-rocksdb</artifactId>
<version>20.09-1.11.0-beta</version>
</dependency>
Replace the implementation of the desired component with crux.rocksdb/->kv-store
{
"crux/index-store": {
"kv-store": {
"crux/module": "crux.rocksdb/->kv-store",
"db-dir": "/tmp/rocksdb"
}
},
"crux/document-store": { ... },
"crux/tx-log": { ... }
}
{:crux/index-store {:kv-store {:crux/module 'crux.rocksdb/->kv-store
:db-dir (io/file "/tmp/rocksdb")}}
:crux/document-store {...}
:crux/tx-log {...}}
metrics
(function, default no-op): enable RocksDB metrics.
db-dir
(required, string/File
/Path
): path to RocksDB data directory
sync?
(boolean, default false): sync to disk after every write
disable-wal?
(boolean): disables the write-ahead log
db-options
(RocksDB Options
object): extra options to pass directly to RocksDB.
To include RocksDB metrics in monitoring, override the metrics
dependency:
{
"crux/index-store": {
"kv-store": {
"crux/module": "crux.rocksdb/->kv-store",
"metrics": {
"crux/module": "crux.rocksdb.metrics/->metrics"
}
...
}
},
"crux/document-store": { ... },
"crux/tx-log": { ... }
}
instance-name
(string, default "rocksdb"
): unique name for this instance of RocksDB, used in metrics domains
sample-window
(duration, default 3s): sample window of statistics collector
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close