Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new message type MsgGroupBroadcast and corresponding handler #485

Open
wants to merge 21 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
280 changes: 280 additions & 0 deletions harness/tests/integration_cases/test_raft.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1347,6 +1347,286 @@ fn test_handle_msg_append() {
}
}

#[test]
fn test_handle_groupbroadcast() {
let l = default_logger();
let ng = |term,
log_term,
index,
commit,
ents: Option<Vec<(u64, u64)>>,
forwards: Option<Vec<(u64, u64, u64)>>| {
let mut m = Message::default();
m.set_msg_type(MessageType::MsgGroupBroadcast);
// always forward messages from peer id 100 in this test
m.from = 100;
m.term = term;
m.log_term = log_term;
m.index = index;
m.commit = commit;
if let Some(ets) = ents {
m.entries = ets.iter().map(|&(i, t)| empty_entry(t, i)).collect();
}
if let Some(fwds) = forwards {
m.forwards = fwds
.iter()
.map(|&(to, t, i)| new_forward(to, t, i))
.collect();
}
m
};

let na = |to, term, log_term, index, commit, ents: Option<Vec<(u64, u64)>>| {
let mut m = Message::default();
m.set_msg_type(MessageType::MsgAppend);
m.to = to;
m.term = term;
m.log_term = log_term;
m.index = index;
m.commit = commit;
if let Some(ets) = ents {
m.entries = ets.iter().map(|&(i, t)| empty_entry(t, i)).collect();
}
m
};

let valiadate_msg = |msgapp: &Message, w_msg: &Message, j: usize| {
if msgapp.msg_type != MessageType::MsgAppend {
panic!("#{}: msg_type should be MsgAppend", j);
}
if msgapp.from != 100 {
panic!("#{}: from = {}, want {}", j, msgapp.from, w_msg.from);
}
if msgapp.to != w_msg.to {
panic!("#{}: to = {}, want {}", j, msgapp.to, w_msg.to);
}
if msgapp.term != w_msg.term {
panic!("#{}: term = {}, want {}", j, msgapp.term, w_msg.term);
}
if msgapp.log_term != w_msg.log_term {
panic!(
"#{}: log_term = {}, want {}",
j, msgapp.log_term, w_msg.log_term
);
}
if msgapp.index != w_msg.index {
panic!("#{}: index = {}, want {}", j, msgapp.index, w_msg.index);
}
if msgapp.commit != w_msg.commit {
panic!("#{}: commit = {}, want {}", j, msgapp.commit, w_msg.commit);
}
if msgapp.get_entries() != w_msg.get_entries() {
panic!(
"#{}: entries length = {}, want {}",
j,
msgapp.get_entries().len(),
w_msg.get_entries().len()
);
}
true
};

let valiadate_tests = |mut tests: Vec<(Message, u64, u64, bool, Message, Message)>| {
for (j, (m, w_index, w_commit, w_reject, fwd1, fwd2)) in tests.drain(..).enumerate() {
let mut sm = new_test_raft_with_logs(
1,
vec![1],
10,
1,
MemStorage::new(),
&[empty_entry(1, 1), empty_entry(2, 2)],
&l,
);

sm.become_follower(2, INVALID_ID);
sm.handle_group_broadcast(&m);
if sm.raft_log.last_index() != w_index {
panic!(
"#{}: last_index = {}, want {}",
j,
sm.raft_log.last_index(),
w_index
);
}
if sm.raft_log.committed != w_commit {
panic!(
"#{}: committed = {}, want {}",
j, sm.raft_log.committed, w_commit
);
}
let msg = sm.read_messages();
if msg.len() != 3 {
panic!("#{}: msg count = {}, want 3", j, msg.len());
}
if msg[0].reject != w_reject {
panic!("#{}: reject = {}, want {}", j, msg[0].reject, w_reject);
}

valiadate_msg(&msg[1], &fwd1, j);
valiadate_msg(&msg[2], &fwd2, j);
}
};

let tests = vec![
// Ensure 1:
// If the agent fails to handle MsgAppend in MsgGroupBroadcast, the agent only forwards empty MsgAppend.
// Send empty MsgAppend even if the previous log in Forward matches.
// Because the agent cannot guarantee its raft log is up-to-date now.
(
ng(2, 3, 2, 3, None, Some(vec![(200, 3, 2), (300, 1, 1)])),
2,
0,
true,
na(200, 2, 3, 2, 3, None),
na(300, 2, 1, 1, 3, None),
), // previous log mismatch,
(
ng(2, 3, 2, 3, None, Some(vec![(200, 3, 3), (300, 0, 0)])),
2,
0,
true,
na(200, 2, 3, 3, 3, None),
na(300, 2, 0, 0, 3, None),
), // previous log mismatch,
(
ng(2, 3, 3, 3, None, Some(vec![(200, 3, 2), (300, 1, 1)])),
2,
0,
true,
na(200, 2, 3, 2, 3, None),
na(300, 2, 1, 1, 3, None),
), // previous log non-exist
(
ng(2, 3, 3, 3, None, Some(vec![(200, 3, 3), (300, 0, 0)])),
2,
0,
true,
na(200, 2, 3, 3, 3, None),
na(300, 2, 0, 0, 3, None),
), // previous log non-exist
// Ensure 2:
// If the agent appends or overwrites its local raft log successfully,
// it will forward MsgAppend according to previous log in Forward.
// The agent appends log entries in MsgGroupBroadcast.
(
ng(
2,
2,
2,
3,
Some(vec![(3, 2), (4, 2)]),
Some(vec![(200, 2, 2), (300, 1, 1)]),
),
4,
3,
false,
na(200, 2, 2, 2, 3, Some(vec![(3, 2), (4, 2)])),
na(300, 2, 1, 1, 3, Some(vec![(2, 2), (3, 2), (4, 2)])),
), // previous log match
(
ng(
2,
2,
2,
3,
Some(vec![(3, 2), (4, 2)]),
Some(vec![(200, 0, 0), (300, 2, 3)]),
),
4,
3,
false,
na(200, 2, 0, 0, 3, Some(vec![(1, 1), (2, 2), (3, 2), (4, 2)])),
na(300, 2, 2, 3, 3, Some(vec![(4, 2)])),
), // previous log match
(
ng(
2,
2,
2,
4,
Some(vec![(3, 2), (4, 2)]),
Some(vec![(200, 1, 2), (300, 2, 1)]),
),
4,
4,
false,
na(200, 2, 1, 2, 4, None),
na(300, 2, 2, 1, 4, None),
), // previous log mismatch
(
ng(
2,
2,
2,
3,
Some(vec![(3, 2), (4, 2)]),
Some(vec![(200, 2, 5), (300, 3, 6)]),
),
4,
3,
false,
na(200, 2, 2, 5, 3, None),
na(300, 2, 3, 6, 3, None),
), // previous log non-exist
// The agent overwrites log entries in MsgGroupBroadcast.
(
ng(
2,
0,
0,
2,
Some(vec![(1, 2), (2, 2)]),
Some(vec![(200, 0, 0), (300, 1, 1)]),
),
2,
2,
false,
na(200, 2, 0, 0, 2, Some(vec![(1, 2), (2, 2)])),
na(300, 2, 1, 1, 2, None),
),
(
ng(
2,
1,
1,
4,
Some(vec![(2, 2), (3, 2), (4, 2), (5, 2)]),
Some(vec![(200, 2, 4), (300, 1, 1)]),
),
5,
4,
false,
na(200, 2, 2, 4, 4, Some(vec![(5, 2)])),
na(300, 2, 1, 1, 4, Some(vec![(2, 2), (3, 2), (4, 2), (5, 2)])),
),
(
ng(2, 1, 1, 1, None, Some(vec![(200, 0, 0), (300, 1, 1)])),
2,
1,
false,
na(200, 2, 0, 0, 1, Some(vec![(1, 1), (2, 2)])),
na(300, 2, 1, 1, 1, Some(vec![(2, 2)])),
),
(
ng(
2,
0,
0,
1,
Some(vec![(1, 2)]),
Some(vec![(200, 0, 0), (300, 1, 1)]),
),
1,
1,
false,
na(200, 2, 0, 0, 1, Some(vec![(1, 2)])),
na(300, 2, 1, 1, 1, None),
),
];

valiadate_tests(tests);
}

// test_handle_heartbeat ensures that the follower commits to the commit in the message.
#[test]
fn test_handle_heartbeat() {
Expand Down
8 changes: 8 additions & 0 deletions harness/tests/test_util/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,14 @@ pub fn new_snapshot(index: u64, term: u64, voters: Vec<u64>) -> Snapshot {
s
}

pub fn new_forward(to: u64, term: u64, index: u64) -> Forward {
let mut f = Forward::default();
f.to = to;
f.log_term = term;
f.index = index;
f
}

pub fn conf_change(ty: ConfChangeType, node_id: u64) -> ConfChange {
let mut cc = ConfChange::default();
cc.node_id = node_id;
Expand Down
14 changes: 14 additions & 0 deletions proto/proto/eraftpb.proto
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,17 @@ message Snapshot {
SnapshotMetadata metadata = 2;
}

// Forward is a type that tells the agent how to forward the MsgGroupBroadcast from the leader.
//
// Field to is the destination of forwarding.
// Field log_term and index is the previous entry of log entries that should be forwarded.
// Entries to be forwarded is the range (index, last_index].
message Forward {
uint64 to = 1;
uint64 log_term = 2;
uint64 index = 3;
}

enum MessageType {
MsgHup = 0;
MsgBeat = 1;
Expand All @@ -66,6 +77,8 @@ enum MessageType {
MsgReadIndexResp = 16;
MsgRequestPreVote = 17;
MsgRequestPreVoteResponse = 18;
MsgGroupBroadcast = 19;
MsgGroupBroadcastResponse = 20;
}

message Message {
Expand All @@ -89,6 +102,7 @@ message Message {
uint64 reject_hint = 11;
bytes context = 12;
uint64 priority = 14;
repeated Forward forwards = 16;
}

message HardState {
Expand Down
5 changes: 5 additions & 0 deletions src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@ pub struct Config {
/// rejoins the cluster.
pub pre_vote: bool,

/// Enables follower replication.
/// This reduces the across-AZ traffic of cloud deployment.
pub follower_replication: bool,

/// The range of election timeout. In some cases, we hope some nodes has less possibility
/// to become leader. This configuration ensures that the randomized election_timeout
/// will always be suit in [min_election_tick, max_election_tick).
Expand Down Expand Up @@ -112,6 +116,7 @@ impl Default for Config {
max_inflight_msgs: 256,
check_quorum: false,
pre_vote: false,
follower_replication: false,
min_election_tick: 0,
max_election_tick: 0,
read_only_option: ReadOnlyOption::Safe,
Expand Down