1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
use crate::storage::mvcc::MvccReader;
use crate::storage::txn::commands::{Command, CommandExt, ReadCommand, ResolveLock, TypedCommand};
use crate::storage::txn::sched_pool::tls_collect_keyread_histogram_vec;
use crate::storage::txn::{ProcessResult, Result, RESOLVE_LOCK_BATCH_SIZE};
use crate::storage::{ScanMode, Snapshot, Statistics};
use collections::HashMap;
use txn_types::{Key, TimeStamp};
command! {
ResolveLockReadPhase:
cmd_ty => (),
display => "kv::resolve_lock_readphase", (),
content => {
txn_status: HashMap<TimeStamp, TimeStamp>,
scan_key: Option<Key>,
}
}
impl CommandExt for ResolveLockReadPhase {
ctx!();
tag!(resolve_lock);
command_method!(readonly, bool, true);
command_method!(write_bytes, usize, 0);
gen_lock!(empty);
}
impl<S: Snapshot> ReadCommand<S> for ResolveLockReadPhase {
fn process_read(self, snapshot: S, statistics: &mut Statistics) -> Result<ProcessResult> {
let tag = self.tag();
let (ctx, txn_status) = (self.ctx, self.txn_status);
let mut reader =
MvccReader::new(snapshot, Some(ScanMode::Forward), !ctx.get_not_fill_cache());
let result = reader.scan_locks(
self.scan_key.as_ref(),
None,
|lock| txn_status.contains_key(&lock.ts),
RESOLVE_LOCK_BATCH_SIZE,
);
statistics.add(&reader.statistics);
let (kv_pairs, has_remain) = result?;
tls_collect_keyread_histogram_vec(tag.get_str(), kv_pairs.len() as f64);
if kv_pairs.is_empty() {
Ok(ProcessResult::Res)
} else {
let next_scan_key = if has_remain {
kv_pairs.last().map(|(k, _lock)| k.clone())
} else {
None
};
Ok(ProcessResult::NextCommand {
cmd: ResolveLock::new(txn_status, next_scan_key, kv_pairs, ctx).into(),
})
}
}
}