-
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.
Improve: build snapshot in anohter task
Before this commit, snapshot is built in the `sm::Worker`, which blocks other state-machine writes, such as applying log entries. This commit parallels applying log entries and building snapshot: A snapshot is built in another `tokio::task`. Because building snapshot is a read operation, it does not have to block the entire state machine. Instead, it only needs a consistent view of the state machine or holding a lock of the state machine. - Fix: #596
- Loading branch information
1 parent
5e8a115
commit fa4085b
Showing
7 changed files
with
151 additions
and
21 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
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
96 changes: 96 additions & 0 deletions
96
tests/tests/log_compaction/t35_building_snapshot_does_not_block_apply.rs
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,96 @@ | ||
use std::sync::Arc; | ||
use std::time::Duration; | ||
|
||
use anyhow::Result; | ||
use maplit::btreeset; | ||
use openraft::raft::AppendEntriesRequest; | ||
use openraft::testing::blank_ent; | ||
use openraft::testing::log_id; | ||
use openraft::Config; | ||
use openraft::RaftNetwork; | ||
use openraft::RaftNetworkFactory; | ||
use openraft::Vote; | ||
use openraft_memstore::BlockOperation; | ||
|
||
use crate::fixtures::init_default_ut_tracing; | ||
use crate::fixtures::RaftRouter; | ||
|
||
/// When building a snapshot, applying-entries request should not be blocked. | ||
/// | ||
/// Issue: https://github.com/datafuselabs/openraft/issues/596 | ||
#[async_entry::test(worker_threads = 8, init = "init_default_ut_tracing()", tracing_span = "debug")] | ||
async fn building_snapshot_does_not_block_apply() -> Result<()> { | ||
let config = Arc::new( | ||
Config { | ||
enable_tick: false, | ||
..Default::default() | ||
} | ||
.validate()?, | ||
); | ||
|
||
let mut router = RaftRouter::new(config.clone()); | ||
let mut log_index = router.new_cluster(btreeset! {0,1}, btreeset! {}).await?; | ||
|
||
let follower = router.get_raft_handle(&1)?; | ||
|
||
tracing::info!(log_index, "--- set flag to delay snapshot building"); | ||
{ | ||
let (mut _sto1, sm1) = router.get_storage_handle(&1)?; | ||
sm1.storage_mut() | ||
.await | ||
.set_blocking(BlockOperation::DelayBuildingSnapshot, Duration::from_millis(5_000)); | ||
} | ||
|
||
tracing::info!(log_index, "--- build snapshot on follower, it should block"); | ||
{ | ||
log_index += router.client_request_many(0, "0", 10).await?; | ||
router.wait(&1, timeout()).log(Some(log_index), "written 10 logs").await?; | ||
|
||
follower.trigger_snapshot().await?; | ||
|
||
tracing::info!(log_index, "--- sleep 500 ms to make sure snapshot is started"); | ||
tokio::time::sleep(Duration::from_millis(500)).await; | ||
|
||
let res = router | ||
.wait(&1, Some(Duration::from_millis(500))) | ||
.snapshot(log_id(1, 0, log_index), "building snapshot is blocked") | ||
.await; | ||
assert!(res.is_err(), "snapshot should be blocked and can not finish"); | ||
} | ||
|
||
tracing::info!( | ||
log_index, | ||
"--- send append-entries request to the follower that is building snapshot" | ||
); | ||
{ | ||
let next = log_index + 1; | ||
|
||
let rpc = AppendEntriesRequest::<openraft_memstore::TypeConfig> { | ||
vote: Vote::new_committed(1, 0), | ||
prev_log_id: Some(log_id(1, 0, log_index)), | ||
entries: vec![blank_ent(1, 0, next)], | ||
// Append and commit this entry | ||
leader_commit: Some(log_id(1, 0, next)), | ||
}; | ||
|
||
let mut cli = router.new_client(1, &()).await; | ||
let fu = cli.send_append_entries(rpc); | ||
let fu = tokio::time::timeout(Duration::from_millis(500), fu); | ||
let resp = fu.await??; | ||
assert!(resp.is_success()); | ||
|
||
router | ||
.wait(&1, timeout()) | ||
.log( | ||
Some(next), | ||
format!("log at index {} can be applied, while snapshot is building", next), | ||
) | ||
.await?; | ||
} | ||
|
||
Ok(()) | ||
} | ||
|
||
fn timeout() -> Option<Duration> { | ||
Some(Duration::from_millis(1_000)) | ||
} |
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