At database creation datahike supports features that can be
configured based on the application's requirements. As of version 0.2.0
configuration for the storage backend, the schema
flexibility, and the
time variance is supported.
Be aware: all these features can be set at database creation
but can not be changed afterwards.
Configuring datahike is now possible via the environ library made by weavejester. That means you can use the lein-environ plugins for leiningen or boot to read variables from .lein-env
or .boot.env
. Without using the plugins you can use environment variables, java system properties and passing a config-map as argument.
The sources are resolved in following order:
That means passing a config as argument overwrites java system properties and using java system properties overwrite environment variables etc. Currently the configuration map looks like this per default:
{:store {:backend :mem ;keyword
:username nil ;string
:password nil ;string
:path nil ;string
:host nil ;string
:port nil} ;int
:schema-on-read false ;boolean
:temporal-index true}} ;boolean
Please refer to the documentation of the environ library on how to use it. When you want to pass a map to the configuration you can pass the above map or parts of it to the reload-config function in the datahike.config namespace like this:
(require '[datahike.api :as d]
'[datahike.config :as c])
(c/reload-config {:store
{:backend :file
:path "/tmp/datahike"}})
(d/create-database)
This is best done before creating the database so that the database does not have to be recreated and dataloss is avoided. If you want to pass the config as environment variables or Java system properties you need to name them like following:
properties | envvar |
---|---|
datahike.store.backend | DATAHIKE_STORE_BACKEND |
datahike.store.username | DATAHIKE_STORE_USERNAME |
datahike.schema.on.read | DATAHIKE_SCHEMA_ON_READ |
datahike.temporal.index | DATAHIKE_TEMPORAL_INDEX |
etc.
Do not use :
in the keyword strings, it will be added automatically.
Each backend needs a different set of provided parameters. See definition below for further information. For simple and fast creation you can simply use the defaults which creates an in-memory database:
(require '[datahike.api :as d])
(d/create-database)
At the moment we support four different backends: in-memory ,file-based, LevelDB, and PostgreSQL.
<backend>
: mem
host
: name of the databasedatahike:mem://mem-example
{:backend :mem :host "mem-example"}
<backend>
: file
path
: absolute path to the storage folderdatahike:file:///tmp/file-example
{:backend :file :path "/tmp/file-example"}
<backend>
: level
path
: absolute path to the LevelDB instancedatahike:level:///tmp/level-example
{:backend :level :path "/tmp/level-example"}
<backend>
: pg
username
: PostgreSQL instance usernamepassword
: PostgreSQL instance passwordhost
: PostgreSQL instance hostport
: PostgreSQL instance portpath
: name of the PostgreSQL database, must be present in the instancedatahike:pg://alice:foobar@localhost:5432/pg_example
{:backend :pg :host "localhost" :port 5432 :username "alice" :password "foobar" :path "/pg_example"}
By default the datahike api uses a schema-on-write
approach with strict value
types that need to be defined in advance. If you are not sure how your data
model looks like and you want to transact any kind of data into the database you
can set schema-on-read
to true
by adding it as optional parameter at
database creation. You may add basic schema definitions like :db/unique
,
:db/cardinality
or db.type/ref
where these kind of structure is needed.
(require '[datahike.api :as d]
'[datahike.config :as c])
(c/reload-config {:schema {:schema-on-read true}})
(d/create-database)
Have a look at the schema documentation for more information.
Datahike has the capability to inspect and query historical data within temporal
indices. If your application does not require any temporal data, you may
set :temporal-index
to false
.
(require '[datahike.api :as d]
'[datahike.config :as c])
(c/reload-config {:schema {:temporal-index false}})
(d/create-database)
Be aware: when deactivating the temporal index you may not use any temporal databases like history
, as-of
, or
since
.
Refer to the time variance documentation for more information.
Can you improve this documentation? These fine people already did:
Konrad Kühne, Timo Kramer, JC & Christian WeilbachEdit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close