External Backups & Sparse Storage
The built-in snapshot path — db.persist() and brain.restore() — already handles everything on this page for you. Read this when you back up a brain directory with external tools: tar, rsync, cp, scp, or a filesystem-level backup agent.
The one-sentence rule
Always use the sparse-aware flag:
tar czSf(capitalS),rsync --sparse,cp --sparse=always. A naive copy can turn a 2 GB store into a 100+ GB one — or fail the disk entirely.
Why: some files are sparse
When a native accelerator plugin is active, parts of the index live in memory-mapped files created at a large fixed virtual size — the file's apparent size — while the filesystem only allocates blocks that were actually written. A brand-new id-mapper file can report tens of gigabytes in ls -l while occupying a few megabytes on disk.
Check the difference yourself:
ls -lh brain-data/_id_mapper/ # APPARENT size (can be huge)
du -sh brain-data/ # ALLOCATED size (the real footprint)The sparse candidates in a brain directory:
Path | What it is |
|---|---|
| The native id-mapper's mmap files (large fixed virtual size) |
| Native index files (vector base, segments) — may be mmap-backed |
Everything else (entities, _system, _generations, _cas content blobs) is ordinary dense data.
Doing it right
tar — the S flag detects holes and stores only real data:
tar czSf brain-backup.tgz /data/brain
# restore preserves the holes:
tar xzSf brain-backup.tgz -C /data/rsync:
rsync -a --sparse /data/brain/ backup-host:/backups/brain/cp:
cp -a --sparse=always /data/brain /backups/brainWhat goes wrong without the flag: the copy materializes every hole as real zero bytes. A store whose apparent size exceeds the target disk fails with ENOSPC partway through — and a copy that does fit silently costs the full apparent size in storage and transfer time.
What the built-in paths do (so you don't have to)
db.persist(path)snapshots via hard links — instant and space-shared, since every data file is immutable-by-rename. The handful of append-in-place files (the transaction log, the commit fact log's tail segment) and mmap-mutated directories (_id_mapper/) are byte-copied instead, so a post-snapshot write can never reach through a shared inode into your backup.brain.restore(path, { confirm: true })is non-destructive and sparse-aware: the snapshot is copied into a staging area before any live data is touched (all-zero blocks stay holes), and only after the copy fully succeeds does an atomic swap move it into place. A failed copy — includingENOSPC— leaves the live store exactly as it was. A crash mid-swap completes forward on the next open.
Live-store caveats for external tools
Prefer snapshotting a
persist()output, not the live directory.persist()produces a crash-consistent, immutable snapshot; runningtaragainst a live, actively-written directory can capture a torn mid-write state. If you must archive live, stop writes first (or accept that the archive is only as consistent as the moment's flush state).Never prune or "clean up" files inside a brain directory. Index files that look stale or redundant are load-bearing; the store protects its declared index families from in-process deletion, but an external
rmbypasses that fence. If space is the concern,du -shfirst — the allocated size is usually far smaller than it looks.Verify restores by opening them.
Brainy.load(path)opens any snapshot or restored directory read-only — the store verifies its own coherence at open and reports loudly if anything is missing or torn.