Accounts hash calculation metrics (#11433)

This commit is contained in:
sakridge 2020-08-06 21:39:10 -07:00 committed by GitHub
parent 5530ee4c95
commit 770d3d383c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 2 deletions

View File

@ -1592,9 +1592,18 @@ impl AccountsDB {
}
scan.stop();
debug!("{}", scan);
let hash_total = hashes.len();
Ok(Self::accumulate_account_hashes(hashes))
let mut accumulate = Measure::start("accumulate");
let accumulated_hash = Self::accumulate_account_hashes(hashes);
accumulate.stop();
datapoint_info!(
"update_accounts_hash",
("accounts_scan", scan.as_us(), i64),
("hash_accumulate", accumulate.as_us(), i64),
("hash_total", hash_total, i64),
);
Ok(accumulated_hash)
}
pub fn get_accounts_hash(&self, slot: Slot) -> Hash {