hash calculation adds really old slots to dirty_stores (#19434)

This commit is contained in:
Jeff Washington (jwash)
2021-08-26 14:32:43 -05:00
committed by GitHub
parent 7c7640b462
commit 98bc694606
5 changed files with 49 additions and 13 deletions

View File

@ -122,6 +122,7 @@ fn main() {
&ancestors, &ancestors,
None, None,
false, false,
None,
); );
time_store.stop(); time_store.stop();
if results != results_store { if results != results_store {

View File

@ -670,6 +670,7 @@ impl Accounts {
ancestors, ancestors,
None, None,
can_cached_slot_be_unflushed, can_cached_slot_be_unflushed,
None,
) )
.1 .1
} }

View File

@ -108,7 +108,7 @@ impl SnapshotRequestHandler {
let previous_hash = if test_hash_calculation { let previous_hash = if test_hash_calculation {
// We have to use the index version here. // We have to use the index version here.
// We cannot calculate the non-index way because cache has not been flushed and stores don't match reality. // We cannot calculate the non-index way because cache has not been flushed and stores don't match reality.
snapshot_root_bank.update_accounts_hash_with_index_option(true, false) snapshot_root_bank.update_accounts_hash_with_index_option(true, false, None)
} else { } else {
Hash::default() Hash::default()
}; };
@ -146,6 +146,7 @@ impl SnapshotRequestHandler {
let this_hash = snapshot_root_bank.update_accounts_hash_with_index_option( let this_hash = snapshot_root_bank.update_accounts_hash_with_index_option(
use_index_hash_calculation, use_index_hash_calculation,
test_hash_calculation, test_hash_calculation,
Some(snapshot_root_bank.epoch_schedule().slots_per_epoch),
); );
let hash_for_testing = if test_hash_calculation { let hash_for_testing = if test_hash_calculation {
assert_eq!(previous_hash, this_hash); assert_eq!(previous_hash, this_hash);

View File

@ -4698,11 +4698,11 @@ impl AccountsDb {
} }
pub fn update_accounts_hash(&self, slot: Slot, ancestors: &Ancestors) -> (Hash, u64) { pub fn update_accounts_hash(&self, slot: Slot, ancestors: &Ancestors) -> (Hash, u64) {
self.update_accounts_hash_with_index_option(true, false, slot, ancestors, None, false) self.update_accounts_hash_with_index_option(true, false, slot, ancestors, None, false, None)
} }
pub fn update_accounts_hash_test(&self, slot: Slot, ancestors: &Ancestors) -> (Hash, u64) { pub fn update_accounts_hash_test(&self, slot: Slot, ancestors: &Ancestors) -> (Hash, u64) {
self.update_accounts_hash_with_index_option(true, true, slot, ancestors, None, false) self.update_accounts_hash_with_index_option(true, true, slot, ancestors, None, false, None)
} }
fn scan_multiple_account_storages_one_slot<F, B>( fn scan_multiple_account_storages_one_slot<F, B>(
@ -4822,6 +4822,25 @@ impl AccountsDb {
.collect() .collect()
} }
// storages are sorted by slot and have range info.
// if we know slots_per_epoch, then add all stores older than slots_per_epoch to dirty_stores so clean visits these slots
fn mark_old_slots_as_dirty(&self, storages: &SortedStorages, slots_per_epoch: Option<Slot>) {
if let Some(slots_per_epoch) = slots_per_epoch {
let max = storages.range().end;
let acceptable_straggler_slot_count = 100; // do nothing special for these old stores which will likely get cleaned up shortly
let sub = slots_per_epoch + acceptable_straggler_slot_count;
let in_epoch_range_start = max.saturating_sub(sub);
for slot in storages.range().start..in_epoch_range_start {
if let Some(storages) = storages.get(slot) {
storages.iter().for_each(|store| {
self.dirty_stores
.insert((slot, store.id.load(Ordering::Relaxed)), store.clone());
});
}
}
}
}
fn calculate_accounts_hash_helper( fn calculate_accounts_hash_helper(
&self, &self,
use_index: bool, use_index: bool,
@ -4829,6 +4848,7 @@ impl AccountsDb {
ancestors: &Ancestors, ancestors: &Ancestors,
check_hash: bool, check_hash: bool,
can_cached_slot_be_unflushed: bool, can_cached_slot_be_unflushed: bool,
slots_per_epoch: Option<Slot>,
) -> Result<(Hash, u64), BankHashVerificationError> { ) -> Result<(Hash, u64), BankHashVerificationError> {
if !use_index { if !use_index {
let accounts_cache_and_ancestors = if can_cached_slot_be_unflushed { let accounts_cache_and_ancestors = if can_cached_slot_be_unflushed {
@ -4848,6 +4868,8 @@ impl AccountsDb {
min_root, min_root,
Some(slot), Some(slot),
); );
self.mark_old_slots_as_dirty(&storages, slots_per_epoch);
sort_time.stop(); sort_time.stop();
let timings = HashStats { let timings = HashStats {
@ -4877,6 +4899,7 @@ impl AccountsDb {
expected_capitalization: Option<u64>, expected_capitalization: Option<u64>,
can_cached_slot_be_unflushed: bool, can_cached_slot_be_unflushed: bool,
check_hash: bool, check_hash: bool,
slots_per_epoch: Option<Slot>,
) -> Result<(Hash, u64), BankHashVerificationError> { ) -> Result<(Hash, u64), BankHashVerificationError> {
let (hash, total_lamports) = self.calculate_accounts_hash_helper( let (hash, total_lamports) = self.calculate_accounts_hash_helper(
use_index, use_index,
@ -4884,6 +4907,7 @@ impl AccountsDb {
ancestors, ancestors,
check_hash, check_hash,
can_cached_slot_be_unflushed, can_cached_slot_be_unflushed,
slots_per_epoch,
)?; )?;
if debug_verify { if debug_verify {
// calculate the other way (store or non-store) and verify results match. // calculate the other way (store or non-store) and verify results match.
@ -4893,6 +4917,7 @@ impl AccountsDb {
ancestors, ancestors,
check_hash, check_hash,
can_cached_slot_be_unflushed, can_cached_slot_be_unflushed,
None,
)?; )?;
let success = hash == hash_other let success = hash == hash_other
@ -4911,6 +4936,7 @@ impl AccountsDb {
ancestors: &Ancestors, ancestors: &Ancestors,
expected_capitalization: Option<u64>, expected_capitalization: Option<u64>,
can_cached_slot_be_unflushed: bool, can_cached_slot_be_unflushed: bool,
slots_per_epoch: Option<Slot>,
) -> (Hash, u64) { ) -> (Hash, u64) {
let check_hash = false; let check_hash = false;
let (hash, total_lamports) = self let (hash, total_lamports) = self
@ -4922,6 +4948,7 @@ impl AccountsDb {
expected_capitalization, expected_capitalization,
can_cached_slot_be_unflushed, can_cached_slot_be_unflushed,
check_hash, check_hash,
slots_per_epoch,
) )
.unwrap(); // unwrap here will never fail since check_hash = false .unwrap(); // unwrap here will never fail since check_hash = false
let mut bank_hashes = self.bank_hashes.write().unwrap(); let mut bank_hashes = self.bank_hashes.write().unwrap();
@ -5125,6 +5152,7 @@ impl AccountsDb {
None, None,
can_cached_slot_be_unflushed, can_cached_slot_be_unflushed,
check_hash, check_hash,
None,
)?; )?;
if calculated_lamports != total_lamports { if calculated_lamports != total_lamports {
@ -9031,13 +9059,14 @@ pub mod tests {
); );
db.add_root(some_slot); db.add_root(some_slot);
let check_hash = true; let check_hash = true;
for use_index in [true, false] {
assert!(db assert!(db
.calculate_accounts_hash_helper(false, some_slot, &ancestors, check_hash, false) .calculate_accounts_hash_helper(
.is_err()); use_index, some_slot, &ancestors, check_hash, false, None
assert!(db )
.calculate_accounts_hash_helper(true, some_slot, &ancestors, check_hash, false)
.is_err()); .is_err());
} }
}
#[test] #[test]
fn test_calculate_accounts_hash_check_hash() { fn test_calculate_accounts_hash_check_hash() {
@ -9055,9 +9084,11 @@ pub mod tests {
db.add_root(some_slot); db.add_root(some_slot);
let check_hash = true; let check_hash = true;
assert_eq!( assert_eq!(
db.calculate_accounts_hash_helper(false, some_slot, &ancestors, check_hash, false) db.calculate_accounts_hash_helper(
false, some_slot, &ancestors, check_hash, false, None
)
.unwrap(), .unwrap(),
db.calculate_accounts_hash_helper(true, some_slot, &ancestors, check_hash, false) db.calculate_accounts_hash_helper(true, some_slot, &ancestors, check_hash, false, None)
.unwrap(), .unwrap(),
); );
} }

View File

@ -5011,6 +5011,7 @@ impl Bank {
&self, &self,
use_index: bool, use_index: bool,
debug_verify: bool, debug_verify: bool,
slots_per_epoch: Option<Slot>,
) -> Hash { ) -> Hash {
let (hash, total_lamports) = self let (hash, total_lamports) = self
.rc .rc
@ -5023,6 +5024,7 @@ impl Bank {
&self.ancestors, &self.ancestors,
Some(self.capitalization()), Some(self.capitalization()),
false, false,
slots_per_epoch,
); );
if total_lamports != self.capitalization() { if total_lamports != self.capitalization() {
datapoint_info!( datapoint_info!(
@ -5043,7 +5045,7 @@ impl Bank {
} }
pub fn update_accounts_hash(&self) -> Hash { pub fn update_accounts_hash(&self) -> Hash {
self.update_accounts_hash_with_index_option(true, false) self.update_accounts_hash_with_index_option(true, false, None)
} }
/// A snapshot bank should be purged of 0 lamport accounts which are not part of the hash /// A snapshot bank should be purged of 0 lamport accounts which are not part of the hash