pub struct ProgramCache<FG: ForkGraph> {
pub latest_root_slot: Slot,
pub latest_root_epoch: Epoch,
pub environments: ProgramRuntimeEnvironments,
pub upcoming_environments: Option<ProgramRuntimeEnvironments>,
pub programs_to_recompile: Vec<(Pubkey, Arc<ProgramCacheEntry>)>,
pub stats: ProgramCacheStats,
pub fork_graph: Option<Weak<RwLock<FG>>>,
pub loading_task_waiter: Arc<LoadingTaskWaiter>,
/* private fields */
}
Expand description
This structure is the global cache of loaded, verified and compiled programs.
It …
- is validator global and fork graph aware, so it can optimize the commonalities across banks.
- handles the visibility rules of un/re/deployments.
- stores the usage statistics and verification status of each program.
- is elastic and uses a probabilistic eviction stragety based on the usage statistics.
- also keeps the compiled executables around, but only for the most used programs.
- supports various kinds of tombstones to avoid loading programs which can not be loaded.
- cleans up entries on orphan branches when the block store is rerooted.
- supports the cache preparation phase before feature activations which can change cached programs.
- manages the environments of the programs and upcoming environments for the next epoch.
- allows for cooperative loading of TX batches which hit the same missing programs simultaneously.
- enforces that all programs used in a batch are eagerly loaded ahead of execution.
- is not persisted to disk or a snapshot, so it needs to cold start and warm up first.
Fields§
§latest_root_slot: Slot
The slot of the last rerooting
latest_root_epoch: Epoch
The epoch of the last rerooting
environments: ProgramRuntimeEnvironments
Environments of the current epoch
upcoming_environments: Option<ProgramRuntimeEnvironments>
Anticipated replacement for environments
at the next epoch
This is None
during most of an epoch, and only Some
around the boundaries (at the end and beginning of an epoch).
More precisely, it starts with the cache preparation phase a few hundred slots before the epoch boundary,
and it ends with the first rerooting after the epoch boundary.
programs_to_recompile: Vec<(Pubkey, Arc<ProgramCacheEntry>)>
List of loaded programs which should be recompiled before the next epoch (but don’t have to).
stats: ProgramCacheStats
Statistics counters
fork_graph: Option<Weak<RwLock<FG>>>
Reference to the block store
loading_task_waiter: Arc<LoadingTaskWaiter>
Coordinates TX batches waiting for others to complete their task during cooperative loading
Implementations§
Source§impl<FG: ForkGraph> ProgramCache<FG>
impl<FG: ForkGraph> ProgramCache<FG>
pub fn new(root_slot: Slot, root_epoch: Epoch) -> Self
pub fn set_fork_graph(&mut self, fork_graph: Weak<RwLock<FG>>)
Sourcepub fn get_environments_for_epoch(
&self,
epoch: Epoch,
) -> ProgramRuntimeEnvironments
pub fn get_environments_for_epoch( &self, epoch: Epoch, ) -> ProgramRuntimeEnvironments
Returns the current environments depending on the given epoch
Sourcepub fn get_upcoming_environments_for_epoch(
&self,
epoch: Epoch,
) -> Option<ProgramRuntimeEnvironments>
pub fn get_upcoming_environments_for_epoch( &self, epoch: Epoch, ) -> Option<ProgramRuntimeEnvironments>
Returns the upcoming environments depending on the given epoch
Sourcepub fn assign_program(
&mut self,
key: Pubkey,
entry: Arc<ProgramCacheEntry>,
) -> bool
pub fn assign_program( &mut self, key: Pubkey, entry: Arc<ProgramCacheEntry>, ) -> bool
Insert a single entry. It’s typically called during transaction loading,
when the cache doesn’t contain the entry corresponding to program key
.
pub fn prune_by_deployment_slot(&mut self, slot: Slot)
Sourcepub fn prune(&mut self, new_root_slot: Slot, new_root_epoch: Epoch)
pub fn prune(&mut self, new_root_slot: Slot, new_root_epoch: Epoch)
Before rerooting the blockstore this removes all superfluous entries
Sourcepub fn extract(
&self,
search_for: &mut Vec<(Pubkey, (ProgramCacheMatchCriteria, u64))>,
loaded_programs_for_tx_batch: &mut ProgramCacheForTxBatch,
is_first_round: bool,
) -> Option<(Pubkey, u64)>
pub fn extract( &self, search_for: &mut Vec<(Pubkey, (ProgramCacheMatchCriteria, u64))>, loaded_programs_for_tx_batch: &mut ProgramCacheForTxBatch, is_first_round: bool, ) -> Option<(Pubkey, u64)>
Extracts a subset of the programs relevant to a transaction batch and returns which program accounts the accounts DB needs to load.
Sourcepub fn finish_cooperative_loading_task(
&mut self,
slot: Slot,
key: Pubkey,
loaded_program: Arc<ProgramCacheEntry>,
) -> bool
pub fn finish_cooperative_loading_task( &mut self, slot: Slot, key: Pubkey, loaded_program: Arc<ProgramCacheEntry>, ) -> bool
Called by Bank::replenish_program_cache() for each program that is done loading.
pub fn merge( &mut self, modified_entries: &HashMap<Pubkey, Arc<ProgramCacheEntry>>, )
Sourcepub fn get_flattened_entries(
&self,
include_program_runtime_v1: bool,
_include_program_runtime_v2: bool,
) -> Vec<(Pubkey, Arc<ProgramCacheEntry>)>
pub fn get_flattened_entries( &self, include_program_runtime_v1: bool, _include_program_runtime_v2: bool, ) -> Vec<(Pubkey, Arc<ProgramCacheEntry>)>
Returns the list of entries which are verified and compiled.
Sourcepub fn get_flattened_entries_for_tests(
&self,
) -> Vec<(Pubkey, Arc<ProgramCacheEntry>)>
pub fn get_flattened_entries_for_tests( &self, ) -> Vec<(Pubkey, Arc<ProgramCacheEntry>)>
Returns the list of all entries in the cache.
Sourcepub fn get_slot_versions_for_tests(
&self,
key: &Pubkey,
) -> &[Arc<ProgramCacheEntry>]
pub fn get_slot_versions_for_tests( &self, key: &Pubkey, ) -> &[Arc<ProgramCacheEntry>]
Returns the slot versions for the given program id.
Sourcepub fn sort_and_unload(&mut self, shrink_to: PercentageInteger)
pub fn sort_and_unload(&mut self, shrink_to: PercentageInteger)
Unloads programs which were used infrequently
Sourcepub fn evict_using_2s_random_selection(
&mut self,
shrink_to: PercentageInteger,
now: Slot,
)
pub fn evict_using_2s_random_selection( &mut self, shrink_to: PercentageInteger, now: Slot, )
Evicts programs using 2’s random selection, choosing the least used program out of the two entries. The eviction is performed enough number of times to reduce the cache usage to the given percentage.
Sourcepub fn remove_programs(&mut self, keys: impl Iterator<Item = Pubkey>)
pub fn remove_programs(&mut self, keys: impl Iterator<Item = Pubkey>)
Removes all the entries at the given keys, if they exist
Trait Implementations§
Auto Trait Implementations§
impl<FG> !Freeze for ProgramCache<FG>
impl<FG> RefUnwindSafe for ProgramCache<FG>
impl<FG> Send for ProgramCache<FG>
impl<FG> Sync for ProgramCache<FG>
impl<FG> Unpin for ProgramCache<FG>
impl<FG> UnwindSafe for ProgramCache<FG>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more