Hacker News new | ask | show | jobs
by epilys 1426 days ago
Kudos on the release! I've done almost exactly the same thing in Rust with WAL only; writes are appended to a distributed wal which achieves consensus by raft and distributed time leases. it all worked so nearly I was impressed. It was for a client though, so it's unfortunately proprietary.
1 comments

Thanks! That sounds like a fun project. Did you run the WAL writes through Raft or did you just use Raft for leader election?