A distributed graph database written in Erlang/OTP, originally authored by Dallas Noyes (SeerStone, Inc., 2008). Dallas passed away before completing the project. The goal is to finish and extend his work. PRs are welcome. Treat this codebase with care — preserve Dallas's style and conventions wherever possible when completing NYI stubs.
- Erlang/OTP 27 or later
- rebar3 (bootstrapped automatically via
make rebar3if not present)
# 1. Bootstrap rebar3 if you don't have it on PATH
make rebar3
# 2. Compile all applications
make compile
# 3. Start an interactive shell with all apps loaded
make shellInside the shell, start the full system:
application:start(nref),
application:start(database).Or start just the nref subsystem and exercise it:
application:start(nref).
nref_server:get_nref(). % => 1
nref_server:get_nref(). % => 2SeerStoneGraphDb/
├── apps/
│ ├── seerstone/ # Top-level OTP application and supervisor
│ ├── database/ # database application (supervises graphdb + dictionary)
│ ├── graphdb/ # Graph database application and worker stubs
│ ├── dictionary/ # ETS/file-backed key-value dictionary application
│ └── nref/ # Globally unique node-reference ID allocator
├── rebar.config # rebar3 umbrella build configuration
├── Makefile # Convenience targets (compile, shell, release, clean)
├── TASKS.md # Inventory of remaining implementation work
└── CLAUDE.md # Project guide and coding conventions
seerstone (application)
└── seerstone_sup
└── database_sup
├── graphdb_sup
│ ├── graphdb_mgr
│ ├── graphdb_rules
│ ├── graphdb_attr
│ ├── graphdb_class
│ ├── graphdb_instance
│ └── graphdb_language
└── dictionary_sup
├── dictionary_server
└── term_server
nref (application — started independently)
└── nref_sup
├── nref_allocator (DETS-backed block allocator)
└── nref_server (serves nrefs to callers)
| Target | Description |
|---|---|
make compile |
Compile all applications |
make shell |
Start an Erlang shell with all apps on the code path |
make release |
Build a self-contained production release under _build/ |
make clean |
Remove all build artifacts |
make rebar3 |
Download the rebar3 escript into the project root |
| Technology | Used by | Purpose |
|---|---|---|
| DETS | nref_allocator, nref_server |
Persistent disk-based term storage |
| ETS | dictionary_imp |
In-memory term storage |
| ETS tab2file | dictionary_imp |
Persistent serialization of ETS tables |
Runtime configuration lives in apps/seerstone/priv/default.config:
[{seerstone_graph_db, [
{app_port, 8080},
{data_path, "data"},
{index_path, "index"}
]}].See CLAUDE.md for detailed coding conventions, the NYI/UEM macro pattern,
module header format, naming conventions, and the git workflow. See TASKS.md
for a prioritised list of remaining implementation work.
Key conventions at a glance:
- Every module uses
?NYI(X)and?UEM(F, X)macros for unimplemented paths - Module names follow the pattern:
name.erl,name_sup.erl,name_server.erl,name_imp.erl - Graph nodes are identified by Nrefs — plain positive integers allocated by
nref_server:get_nref/0 - Feature work goes on
develop; PRs targetmain