惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

C
Check Point Blog
IT之家
IT之家
V
Visual Studio Blog
The Cloudflare Blog
博客园 - 司徒正美
Jina AI
Jina AI
博客园_首页
阮一峰的网络日志
阮一峰的网络日志
美团技术团队
S
SegmentFault 最新的问题
博客园 - 聂微东
人人都是产品经理
人人都是产品经理
T
Tailwind CSS Blog
罗磊的独立博客
酷 壳 – CoolShell
酷 壳 – CoolShell
量子位
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
博客园 - 三生石上(FineUI控件)
爱范儿
爱范儿
博客园 - Franky
Last Week in AI
Last Week in AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
From RocksDB Pain to GraniteDB Gain: Building a Blockchai...
Altug Tatlis · 2026-04-25 · via DEV Community

Building Ferrous Network exposed the limits of general-purpose databases. Here's why I'm writing GraniteDB from scratch.

Hey folks, Altug here — founder of Ferrous Network, a Rust-based Bitcoin-like L1 blockchain that's live on testnet. Today I want to share a very specific dev story: how wrestling with RocksDB in production led me to start GraniteDB, a correctness-first storage engine designed specifically for blockchain state.

The Pain Point That Started It All

When building Ferrous, I needed persistent storage for:

  • UTXO set
  • Block index
  • Chain state
  • Mempool

RocksDB was the obvious choice. Battle-tested, performs great under pressure, used everywhere from Bitcoin to Kafka. Setup was straightforward:

cargo add rocksdb

Enter fullscreen mode Exit fullscreen mode

But then reality hit. The load times drove me insane.

On first startup (especially IBD - Initial Block Download), I'd sit there watching compilation bars, Clang deps resolving, and RocksDB initializing... for minutes. On reasonably beefy hardware. Every. Single. Time.

This wasn't just "slow." It was uncontrollable. A general-purpose C++ behemoth sitting in my carefully crafted, zero-warnings Rust node. I couldn't debug it. Couldn't easily audit it. Couldn't make it behave predictably for blockchain workloads.

The Core Insight

RocksDB is amazing at what it does: high-throughput, general-purpose key-value storage.

But blockchain nodes don't need "general purpose." They need something much more specific:

✅ Deterministic crash recovery
✅ Predictable snapshot behavior  
✅ Fast point reads for account/state lookups
✅ Safe batch writes for block execution
✅ Lightning-fast startup (no C++ deps hell)
✅ Actually auditable code
❌ Peak TPS for ad serving
❌ Every possible table format optimization  
❌ Multi-writer concurrency (yet)

Enter fullscreen mode Exit fullscreen mode

Enter GraniteDB

So I started writing GraniteDB — not to "beat RocksDB," but to solve my specific pain:

GraniteDB = Rust storage engine
           + Blockchain state semantics  
           + Correctness > Throughput (initially)
           + No C++ interop nightmares

Enter fullscreen mode Exit fullscreen mode

What I've Spec'd So Far

  1. Crystal-clear API contract
pub struct DB {
    // put(key, value) — creates newer version
    // delete(key) — tombstone  
    // snapshot() — sequence-based isolation
    // write_batch(batch) — atomic, crash-safe
}

Enter fullscreen mode Exit fullscreen mode

  1. Production-grade WAL format
32KB fixed blocks + CRC32C fragments
FULL/FIRST/MIDDLE/LAST record types
"truncate at first corruption" recovery

Enter fullscreen mode Exit fullscreen mode

  1. Single-writer threading model
Writer owns: seq assignment, WAL, memtable
Concurrent readers: short-lived guards
"No races by design"

Enter fullscreen mode Exit fullscreen mode

  1. Explicit invariants everywhere
- No partial batches visible after crash
- Manifest = single source of SST truth  
- Deterministic replay from WAL+Manifest
- Snapshot reads see consistent sequence

Enter fullscreen mode Exit fullscreen mode

Why This Actually Works for Blockchains

Most blockchain state workloads are embarrassingly parallel for reads, but need sequential, crash-safe writes:

Block execution → WriteBatch → WAL → ACK
Account lookup → Memtable → L0 → L1 (point read)
UTXO scan → Iterator with snapshot
Pruning → Background compaction (Phase 2)

Enter fullscreen mode Exit fullscreen mode

GraniteDB targets exactly this shape.

The Honest Tradeoffs

I'm not promising "10x faster than RocksDB":

✨ GraniteDB wins:
• Startup time (no C++ deps)
• Deterministic recovery  
• Predictable snapshots
• Full auditability
• Zero vendor complexity

⚡ RocksDB still wins:
• Raw throughput
• Years of battle scars
• Every optimization known to humankind

Enter fullscreen mode Exit fullscreen mode

What's Next

Phase A (Now): Correctness core + crash tests

  • WAL/SST/Manifest formats locked
  • Single memtable + sync flush
  • Property tests vs reference model

Phase B: Immutable memtable queue + async flush

Phase C: L0→L1 compaction
Phase D: Background workers
Phase E: Reader optimizations

Then Ferrous integration. If it works there, it'll work anywhere.

Closing Thought

Sometimes the best projects come from personal pain. I got tired of waiting for RocksDB to load in my own node. So I'm building something that starts instantly, behaves predictably, and I can actually reason about when my chain crashes at 3 AM.

GraniteDB won't be everything to everyone. But for blockchain state? It just might be exactly right.


Follow progress: GraniteDB specs | Ferrous Network