Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/linkdd/graphbase
Graph oriented database
https://github.com/linkdd/graphbase
database distributed erlang graph
Last synced: about 1 month ago
JSON representation
Graph oriented database
- Host: GitHub
- URL: https://github.com/linkdd/graphbase
- Owner: linkdd
- License: apache-2.0
- Created: 2019-03-31T20:59:01.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-19T04:15:13.000Z (almost 6 years ago)
- Last Synced: 2024-11-05T10:38:06.335Z (3 months ago)
- Topics: database, distributed, erlang, graph
- Language: Erlang
- Homepage:
- Size: 85 KB
- Stars: 3
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
graphbase
=========Graphbase is a distributed graph oriented database built on top of a the Riak_ distributed Key-Value store.
Each node of the cluster expose an HTTP API providing the following features:
- external authentication through the ``REMOTE_USER`` HTTP header whose value maps to a Graphbase user name
- Prometheus_ metrics exporter, exposing metrics from the whole cluster
- POST endpoint allowing to send requests using the Graphbase DSLMany of the graph related algorithms are done using the Map-Reduce framework emapred_.
See the documentation_ for more informations.
.. _Riak: https://docs.riak.com/riak/kv/latest/index.html
.. _Prometheus: https://prometheus.io/
.. _emapred: https://github.com/linkdd/emapred.git
.. _documentation: https://github.com/linkdd/graphbase/wikiUsing Docker
------------A ``Makefile`` is present to pilot ``docker-compose``
.. code-block:: console
Print help
$ makeBuild the Riak based Key-Value store image
$ make build/kvs
Build the Graphbase Node image
$ make build/node
Start the cluster
$ make up