riteraft icon indicating copy to clipboard operation
riteraft copied to clipboard

RiteRaft - A raft framework, for regular people

Results 13 riteraft issues
Sort by recently updated
recently updated
newest added

Hi all, I use this library in my project, and find it will crash after 255th commit. I also test the example code, it also crashes after subunit around 255...

bug

I saw the snapshot interface is very simple now, only copy the mem data to the followers' node. Anyone knows how to implement a snapshot for the persistent database which...

documentation

Bumps [thread_local](https://github.com/Amanieu/thread_local-rs) from 1.1.3 to 1.1.4. Commits 4a54e57 Bump version to 1.1.4 ebf8b45 Merge pull request #34 from ibraheemdev/patch-1 3d69afa Fix memory ordering in RawIter::next See full diff in compare...

dependencies

Bumps [thread_local](https://github.com/Amanieu/thread_local-rs) from 1.1.3 to 1.1.4. Commits 4a54e57 Bump version to 1.1.4 ebf8b45 Merge pull request #34 from ibraheemdev/patch-1 3d69afa Fix memory ordering in RawIter::next See full diff in compare...

dependencies

Bumps [tokio](https://github.com/tokio-rs/tokio) from 0.2.25 to 1.8.4. Release notes Sourced from tokio's releases. Tokio v1.8.4 1.8.4 (November 15, 2021) This release backports a bugfix for a data race when sending and...

dependencies

Bumps [tokio](https://github.com/tokio-rs/tokio) from 0.2.25 to 1.8.4. Release notes Sourced from tokio's releases. Tokio v1.8.4 1.8.4 (November 15, 2021) This release backports a bugfix for a data race when sending and...

dependencies

Bumps [tokio](https://github.com/tokio-rs/tokio) from 0.2.25 to 1.8.4. Release notes Sourced from tokio's releases. Tokio v1.8.4 1.8.4 (November 15, 2021) This release backports a bugfix for a data race when sending and...

dependencies

I'm using the memstore example and starting 3 nodes like so: ``` ./target/debug/riteraft-memstore --raft-addr=0.0.0.0:5001 --web-server=0.0.0.0:8001 ./target/debug/riteraft-memstore --raft-addr=0.0.0.0:5002 --web-server=0.0.0.0:8002 --peer-addr=0.0.0.0:5001 ./target/debug/riteraft-memstore --raft-addr=0.0.0.0:5003 --web-server=0.0.0.0:8003 --peer-addr=0.0.0.0:5001 ``` When I kill the first process...

Hi, Thank you for building such a wonderful crate. It is very interesting. However, I'm trying to run the example code, but the third node doesn't seem to join the...

bug
help wanted

https://github.com/async-raft/async-raft is An implementation of the Raft distributed consensus protocol using the Tokio framework.

question