Refactor - simplify geyser notify book keeping code and fix total_accounts stat (#30207)
* refactor common code * fix total_accounts stat * clippy
This commit is contained in:
parent
12411e5215
commit
0b5ae8abe1
|
@ -8,7 +8,7 @@ use {
|
|||
solana_sdk::{
|
||||
account::AccountSharedData, clock::Slot, pubkey::Pubkey, transaction::SanitizedTransaction,
|
||||
},
|
||||
std::collections::{hash_map::Entry, HashMap, HashSet},
|
||||
std::collections::{HashMap, HashSet},
|
||||
};
|
||||
|
||||
#[derive(Default)]
|
||||
|
@ -101,19 +101,13 @@ impl AccountsDb {
|
|||
notify_stats.skipped_accounts += 1;
|
||||
return;
|
||||
}
|
||||
match accounts_to_stream.entry(account.meta.pubkey) {
|
||||
Entry::Occupied(mut entry) => {
|
||||
// later entries in the same slot are more recent and override earlier accounts for the same pubkey
|
||||
// We can pass an incrementing number here for write_version in the future, if the storage does not have a write_version.
|
||||
// As long as all accounts for this slot are in 1 append vec that can be itereated olest to newest.
|
||||
entry.insert(account);
|
||||
}
|
||||
Entry::Vacant(entry) => {
|
||||
entry.insert(account);
|
||||
}
|
||||
}
|
||||
notify_stats.total_accounts += account_len;
|
||||
|
||||
// later entries in the same slot are more recent and override earlier accounts for the same pubkey
|
||||
// We can pass an incrementing number here for write_version in the future, if the storage does not have a write_version.
|
||||
// As long as all accounts for this slot are in 1 append vec that can be itereated olest to newest.
|
||||
accounts_to_stream.insert(account.meta.pubkey, account);
|
||||
});
|
||||
notify_stats.total_accounts += account_len;
|
||||
measure_filter.stop();
|
||||
notify_stats.elapsed_filtering_us += measure_filter.as_us() as usize;
|
||||
|
||||
|
|
Loading…
Reference in New Issue