package irmin

  1. Overview
  2. Docs
Irmin, a distributed database that follows the same design principles as Git

Install

Dune Dependency

Authors

Maintainers

Sources

irmin-2.2.0.tbz
sha256=a44e018495336e0f632433fcae7b4e84699938a7110212da9e3818b35048fc3f
sha512=8dd9e9f09877a5541ee1be3387e041f63e6b522f9efac388d72199f965b0692f2502e93c1ddc2a5f959289fa2f75f06849582cffbcc201de19e9bd50413f6115

Description

Irmin is a library for persistent stores with built-in snapshot, branching and reverting mechanisms. It is designed to use a large variety of backends. Irmin is written in pure OCaml and does not depend on external C stubs; it aims to run everywhere, from Linux, to browsers and Xen unikernels.

Published: 28 Jun 2020

README

Irmin - A distributed database built on the same principles as Git

Irmin is an OCaml library for building mergeable, branchable distributed data stores.

Features

  • Built-in snapshotting - backup and restore

  • Storage agnostic - you can use Irmin on top of your own storage layer

  • Custom datatypes - (de)serialization for custom data types, derivable via ppx_irmin

  • Highly portable - runs anywhere from Linux to web browsers and Xen unikernels

  • Git compatibility - irmin-git uses an on-disk format that can be inspected and modified using Git

  • Dynamic behavior - allows the users to define custom merge functions, use in-memory transactions (to keep track of reads as well as writes) and to define event-driven workflows using a notification mechanism

Documentation

Documentation can be found online at https://mirage.github.io/irmin

Installation

To install Irmin, the command-line tool and all optional dependencies using opam:

opam install irmin-unix

A minimal installation, with no storage backends can be installed by running:

opam install irmin

To only install the in-memory storage backend:

opam install irmin-mem

The following packages have been made available on opam:

  • irmin - the base package, no storage implementations

  • irmin-chunk - chunked storage

  • irmin-fs - filesystem-based storage using bin_prot

  • irmin-git - Git compatible storage

  • irmin-graphql - GraphQL server

  • irmin-http - a simple REST interface

  • irmin-mem - in-memory storage implementation

  • irmin-mirage - mirage compatibility

  • irmin-mirage-git - Git compatible storage for mirage

  • irmin-mirage-graphql - mirage compatible GraphQL server

  • irmin-unix - unix compatibility

  • irmin-pack - compressed, on-disk, posix backend

  • ppx_irmin - PPX deriver for Irmin content types (see README_PPX.md)

For more information about an individual package consult the online documentation.

Development version

To install the development version of Irmin, clone this repository and opam install the packages inside:

git clone https://github.com/mirage/irmin
cd irmin/
opam install .

Examples

Below is a simple example of setting a key and getting the value out of a Git based, filesystem-backed store.

open Lwt.Infix

(* Irmin store with string contents *)
module Store = Irmin_unix.Git.FS.KV(Irmin.Contents.String)

(* Database configuration *)
let config = Irmin_git.config ~bare:true "/tmp/irmin/test"

(* Commit author *)
let author = "Example <example@example.com>"

(* Commit information *)
let info fmt = Irmin_unix.info ~author fmt

let main =
  (* Open the repo *)
  Store.Repo.v config >>=

  (* Load the master branch *)
  Store.master >>= fun t ->

  (* Set key "foo/bar" to "testing 123" *)
  Store.set_exn t ~info:(info "Updating foo/bar") ["foo"; "bar"] "testing 123" >>= fun () ->

  (* Get key "foo/bar" and print it to stdout *)
  Store.get t ["foo"; "bar"] >|= fun x ->
  Printf.printf "foo/bar => '%s'\n" x

(* Run the program *)
let () = Lwt_main.run main

The example is contained in examples/readme.ml. It can be compiled and executed with dune:

$ dune build examples/readme.exe
$ dune exec examples/readme.exe
foo/bar => 'testing 123'

The examples/ directory also contains more advanced examples, which can be executed in the same way.

Command-line

The same thing can also be accomplished using irmin, the command-line application installed with irmin-unix, by running:

$ echo "root: ." > irmin.yml
$ irmin init
$ irmin set foo/bar "testing 123"
$ irmin get foo/bar

irmin.yml allows for irmin flags to be set on a per-directory basis. You can also set flags globally using $HOME/.irmin/config.yml. Run irmin help irmin.yml for further details.

Also see irmin --help for list of all commands and either irmin <command> --help or irmin help <command> for more help with a specific command.

Issues

Feel free to to report any issues using the Github bugtracker.

Conditions

See the LICENSE file.

Acknowledgements

Development of Irmin was supported in part by the EU FP7 User-Centric Networking project, Grant No. 611001.

Dependencies (11)

  1. astring
  2. logs >= "0.5.0"
  3. ocamlgraph
  4. digestif
  5. base64 >= "3.0.0"
  6. lwt >= "2.4.7"
  7. jsonm >= "1.0.0"
  8. uri >= "1.3.12"
  9. fmt >= "0.8.5"
  10. dune >= "1.8.0"
  11. ocaml >= "4.07.0"

Dev Dependencies (3)

  1. ppx_irmin with-test
  2. alcotest with-test
  3. hex with-test

Used by (12)

  1. irmin-chunk = "2.2.0"
  2. irmin-fs = "2.2.0"
  3. irmin-git = "2.2.0"
  4. irmin-graphql = "2.2.0"
  5. irmin-http = "2.2.0"
  6. irmin-indexeddb >= "2.0"
  7. irmin-mem = "2.2.0"
  8. irmin-mirage = "2.2.0"
  9. irmin-pack = "2.2.0"
  10. irmin-test = "2.2.0"
  11. irmin-unix = "2.2.0"
  12. tezos-storage >= "8.0" & < "9.0"

Conflicts

None