generate_index timings (#17983)
This commit is contained in:
committed by
GitHub
parent
20e714b3d0
commit
1feaaf009d
@ -161,6 +161,23 @@ pub struct ErrorCounters {
|
|||||||
pub not_allowed_during_cluster_maintenance: usize,
|
pub not_allowed_during_cluster_maintenance: usize,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Default, Debug)]
|
||||||
|
struct GenerateIndexTimings {
|
||||||
|
pub index_time: u64,
|
||||||
|
pub scan_time: u64,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl GenerateIndexTimings {
|
||||||
|
pub fn report(&self) {
|
||||||
|
datapoint_info!(
|
||||||
|
"generate_index",
|
||||||
|
// we cannot accurately measure index insertion time because of many threads and lock contention
|
||||||
|
("total_us", self.index_time, i64),
|
||||||
|
("scan_stores_us", self.scan_time, i64),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Default, Debug, PartialEq, Clone)]
|
#[derive(Default, Debug, PartialEq, Clone)]
|
||||||
pub struct AccountInfo {
|
pub struct AccountInfo {
|
||||||
/// index identifying the append storage
|
/// index identifying the append storage
|
||||||
@ -5887,13 +5904,11 @@ impl AccountsDb {
|
|||||||
})
|
})
|
||||||
.sum();
|
.sum();
|
||||||
index_time.stop();
|
index_time.stop();
|
||||||
|
let timings = GenerateIndexTimings {
|
||||||
datapoint_info!(
|
scan_time,
|
||||||
"generate_index",
|
index_time: index_time.as_us(),
|
||||||
// we cannot accurately measure index insertion time because of many threads and lock contention
|
};
|
||||||
("total_us", index_time.as_us(), i64),
|
timings.report();
|
||||||
("scan_stores_us", scan_time, i64),
|
|
||||||
);
|
|
||||||
|
|
||||||
// Need to add these last, otherwise older updates will be cleaned
|
// Need to add these last, otherwise older updates will be cleaned
|
||||||
for slot in slots {
|
for slot in slots {
|
||||||
|
Reference in New Issue
Block a user