- deps.edn
-
com.xtdb/xtdb-lmdb {:mvn/version "{xtdb_version}"}
- pom.xml
-
<dependency> <groupId>com.xtdb</groupId> <artifactId>xtdb-lmdb</artifactId> <version>{xtdb_version}</version> </dependency>
In order to use LMDB within XTDB, you must first add LMDB as a project dependency:
com.xtdb/xtdb-lmdb {:mvn/version "{xtdb_version}"}
<dependency>
<groupId>com.xtdb</groupId>
<artifactId>xtdb-lmdb</artifactId>
<version>{xtdb_version}</version>
</dependency>
If you’re using LMDB and seeing out-of-memory issues, you will likely want to configure the JVM parameter MaxDirectMemorySize
(e.g. -XX:MaxDirectMemorySize=1024m
), because the default value varies by JVM and could be unbounded (e.g. in the case of openjdk-11
, confirmed using -XX:+PrintFinalFlags
).
Ensure that the sum of MaxDirectMemorySize
and Xmx
memory is available from the system, and be aware that consumption of direct memory may be shared with any other processes running on the system.
Replace the implementation of the desired component with xtdb.lmdb/->kv-store
{
"xtdb/index-store": {
"kv-store": {
"xtdb/module": "xtdb.lmdb/->kv-store",
"db-dir": "/tmp/lmdb"
}
},
"xtdb/document-store": { ... },
"xtdb/tx-log": { ... }
}
{:xtdb/index-store {:kv-store {:xtdb/module 'xtdb.lmdb/->kv-store
:db-dir (io/file "/tmp/lmdb")}}
:xtdb/document-store {...}
:xtdb/tx-log {...}}
{:xtdb/index-store {:kv-store {:xtdb/module xtdb.lmdb/->kv-store
:db-dir "/tmp/lmdb"}}
:xtdb/document-store {...}
:xtdb/tx-log {...}}
It is generally advised to use independent LMDB instances for each component, although using a single instance for the transaction log and document store is possible. Do not share the LMDB instance used for the index store with other components as you cannot then perform XTDB version upgrades.
db-dir
(required, string/File
/Path
): path to LMDB data directory
sync?
(boolean, default false): sync to disk after every write
env-flags
(int): LMDB flags
env-mapsize
(int): LMDB map size
Can you improve this documentation? These fine people already did:
Jeremy Taylor & Steven DeobaldEdit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close