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:
HaoranYi 2023-02-10 12:18:50 -06:00 committed by GitHub
parent 12411e5215
commit 0b5ae8abe1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 13 deletions

View File

@ -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;