-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: handle-vote should compare last_log_id in dictionary order, not …
…in vector order A log `{term:2, index:1}` is definitely greater than log `{term:1, index:2}` in raft spec. Comparing log id in the way of `term1 >= term2 && index1 >= index2` blocks election: no one can become a leader.
- Loading branch information
1 parent
734eec6
commit a48a328
Showing
4 changed files
with
135 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
use std::sync::Arc; | ||
use std::time::Duration; | ||
|
||
use anyhow::Result; | ||
use async_raft::raft::Entry; | ||
use async_raft::raft::EntryConfigChange; | ||
use async_raft::raft::EntryPayload; | ||
use async_raft::raft::MembershipConfig; | ||
use async_raft::storage::HardState; | ||
use async_raft::Config; | ||
use async_raft::LogId; | ||
use async_raft::RaftStorage; | ||
use async_raft::State; | ||
use fixtures::RaftRouter; | ||
use maplit::btreeset; | ||
|
||
#[macro_use] | ||
mod fixtures; | ||
|
||
/// The last_log in a vote request must be greater or equal than the local one. | ||
/// | ||
/// - Fake a cluster with two node: with last log {2,1} and {1,2}. | ||
/// - Bring up the cluster and only node 0 can become leader. | ||
/// | ||
/// RUST_LOG=async_raft,memstore,elect_compare_last_log=trace cargo test -p async-raft --test elect_compare_last_log | ||
#[tokio::test(flavor = "multi_thread", worker_threads = 6)] | ||
async fn elect_compare_last_log() -> Result<()> { | ||
let (_log_guard, ut_span) = init_ut!(); | ||
let _ent = ut_span.enter(); | ||
|
||
// Setup test dependencies. | ||
let config = Arc::new(Config::build("test".into()).validate().expect("failed to build Raft config")); | ||
let router = Arc::new(RaftRouter::new(config.clone())); | ||
|
||
let sto0 = router.new_store(0); | ||
let sto1 = router.new_store(1); | ||
|
||
tracing::info!("--- fake store: sto0: last log: 2,1"); | ||
{ | ||
sto0.save_hard_state(&HardState { | ||
current_term: 10, | ||
voted_for: None, | ||
}) | ||
.await?; | ||
|
||
sto0.append_to_log(&[&Entry { | ||
log_id: LogId { term: 2, index: 1 }, | ||
payload: EntryPayload::ConfigChange(EntryConfigChange { | ||
membership: MembershipConfig { | ||
members: btreeset! {0,1}, | ||
members_after_consensus: None, | ||
}, | ||
}), | ||
}]) | ||
.await?; | ||
} | ||
|
||
tracing::info!("--- fake store: sto1: last log: 1,2"); | ||
{ | ||
sto1.save_hard_state(&HardState { | ||
current_term: 10, | ||
voted_for: None, | ||
}) | ||
.await?; | ||
|
||
sto1.append_to_log(&[ | ||
&Entry { | ||
log_id: LogId { term: 1, index: 1 }, | ||
payload: EntryPayload::ConfigChange(EntryConfigChange { | ||
membership: MembershipConfig { | ||
members: btreeset! {0,1}, | ||
members_after_consensus: None, | ||
}, | ||
}), | ||
}, | ||
&Entry { | ||
log_id: LogId { term: 1, index: 2 }, | ||
payload: EntryPayload::Blank, | ||
}, | ||
]) | ||
.await?; | ||
} | ||
|
||
tracing::info!("--- bring up cluster and elect"); | ||
|
||
router.new_raft_node_with_sto(0, sto0.clone()).await; | ||
router.new_raft_node_with_sto(1, sto1.clone()).await; | ||
|
||
router | ||
.wait_for_state(&btreeset! {0}, State::Leader, timeout(), "only node 0 becomes leader") | ||
.await?; | ||
|
||
Ok(()) | ||
} | ||
|
||
fn timeout() -> Option<Duration> { | ||
Some(Duration::from_millis(5000)) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters