SaaSHub helps you find the best software and product alternatives Learn more →
Stateright Alternatives
Similar projects and alternatives to stateright
-
solana
Discontinued Web-Scale Blockchain for fast, secure, scalable, decentralized apps and marketplaces.
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
-
tlaplus
TLC is a model checker for specifications written in TLA+. The TLA+Toolbox is an IDE for TLA+.
-
-
-
-
-
-
lam
:rocket: a lightweight, universal actor-model vm for writing scalable and reliable applications that run natively and on WebAssembly (by leostera)
-
-
stateright discussion
stateright reviews and mentions
- Distributed Async Executors?
-
Announcing `statig`: Hierarchical state machines for event-driven systems (using GAT’s)
stateright - which is meant for distributed state machines and includes a full on model checker
-
RiB Newsletter #27
Stateright.
-
Paxos vs Raft: Have We Reached Consensus on Distributed Consensus?
Author seems to be using https://github.com/ailidani/paxi for actual implementation and proof.
I'm more of a python/rust guy. There have been some attempts to make model checkers in rust: https://github.com/stateright/stateright
The issue is that rust is a very large language and it's hard to get it right.
I have a python implementation of raft over here:
https://github.com/adsharma/raft/tree/master/raft/states
That's small enough to be self contained and perhaps run through a model checker some day and transpiled to many statically typed languages.
The issue with TLA+ proofs such as:
https://github.com/fpaxos/raft.tla
is that it's hard to tell if a particular C++ or Rust implementation conforms to the spec.
So how do we check and transpile?
* https://www.philipzucker.com/Modelling_TLA_in_z3py/
-
Does "safety by default" scale?
Why make memory safety the exception? For example, https://github.com/stateright/stateright implements model checking for distributed systems at the library-level. If you could achieve the same effect with memory safety through the ecosystem, why wouldn't you?
-
Stateright: A model checker for implementing distributed systems
Regarding the last point — correct, Stateright aims to verify both.
It’s important to clarify that this doesn’t provide a proof of correctness, but it can dramatically improve confidence in both the design and implementation compared with fuzz testing, for example. This is done by exhaustively enumerating possible nondeterministic outcomes (e.g. due to message reordering) within specified constraints (e.g. up to S servers and C clients performing X operations…).
Examples:
SD Paxos: https://github.com/stateright/stateright/blob/master/example...
ABD (linearizable register algorithm): https://github.com/stateright/stateright/blob/master/example...
-
Rust and Julia
I believe they meant this: https://github.com/stateright/stateright
-
A note from our sponsor - SaaSHub
www.saashub.com | 18 Jan 2025
Stats
stateright/stateright is an open source project licensed under MIT License which is an OSI approved license.
The primary programming language of stateright is Rust.