Dalmatiner DB是一个使用纯Erlang编写的度量数据库。当度量一些特殊性能时,可以做出一些相应的处理。它的目的是快速存储度量数据,具有低开销,以及易于查询和管理的特点。
安装
安装二进制包:
curl -O https://project-fifo.net/fifo.gpg gpg –primary-keyring /opt/local/etc/gnupg/pkgsrc.gpg –import < fifo.gpg gpg –keyring /opt/local/etc/gnupg/pkgsrc.gpg –fingerprint
其中密钥是:BB975564。指纹:CE62 C662 67D5 9129 B291 62A0 ADDF 278A BB97 5564
VERSION='dev' # use 'rel' for release packagese cho "http://release.project-fifo.net/pkg/${VERSION}/" >>/opt/local/etc/pkgin/repositories.conf pkgin -fy up pkgin install dalmatinerdb # To install the backend package pkgin install dalmatinerfe # To install the frontend package
安装数据存储:
git clone https://github.com/dalmatinerdb/dalmatinerdb.gitcd dalmatinerdb make deps all rel cp -r rel/dalmatinerdb $TARGET_DIRECTORYcd $TARGET_DIRECTORYcp etc/dalmatinerdb.conf.example etc/dalmatinerdb.conf vi etc/dalmatinerdb.conf # check the settings and adjust if needed./bin/ddb start
安装前端:
git clone cd dalmatiner-frontend make deps all rel cp -r rel/dalmatinerfe $TARGET_DIRECTORYcd $TARGET_DIRECTORY cp etc/dalmatinerfe.conf.example etc/dalmatinerfe.conf vi etc/dalmatinerfe.conf # check the settings and adjust if needed ./bin/dalmatinerfe start