mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-03 00:31:50 +00:00
Add StatePayloadStatus to storage_strategy
This commit is contained in:
@@ -12,7 +12,9 @@ use std::str::FromStr;
|
||||
use std::sync::LazyLock;
|
||||
use superstruct::superstruct;
|
||||
use types::state::HistoricalSummary;
|
||||
use types::{BeaconState, ChainSpec, Epoch, EthSpec, Hash256, Slot, Validator};
|
||||
use types::{
|
||||
BeaconState, ChainSpec, Epoch, EthSpec, Hash256, Slot, Validator, execution::StatePayloadStatus,
|
||||
};
|
||||
|
||||
static EMPTY_PUBKEY: LazyLock<PublicKeyBytes> = LazyLock::new(PublicKeyBytes::empty);
|
||||
|
||||
@@ -653,7 +655,21 @@ impl HierarchyModuli {
|
||||
/// exponents [5,13,21], to reconstruct state at slot 3,000,003: if start = 3,000,002
|
||||
/// layer 2 diff will point to the start snapshot instead of the layer 1 diff at
|
||||
/// 2998272.
|
||||
pub fn storage_strategy(&self, slot: Slot, start_slot: Slot) -> Result<StorageStrategy, Error> {
|
||||
/// * `payload_status` - whether the state is `Full` (came from processing a payload), or
|
||||
/// `Pending` (came from processing a block). Prior to Gloas all states are Pending.
|
||||
pub fn storage_strategy(
|
||||
&self,
|
||||
slot: Slot,
|
||||
start_slot: Slot,
|
||||
payload_status: StatePayloadStatus,
|
||||
) -> Result<StorageStrategy, Error> {
|
||||
// Store all Full states by replaying from their respective Pending state at the same slot.
|
||||
if let StatePayloadStatus::Full = payload_status
|
||||
&& slot >= start_slot
|
||||
{
|
||||
return Ok(StorageStrategy::ReplayFrom(slot));
|
||||
}
|
||||
|
||||
match slot.cmp(&start_slot) {
|
||||
Ordering::Less => return Err(Error::LessThanStart(slot, start_slot)),
|
||||
Ordering::Equal => return Ok(StorageStrategy::Snapshot),
|
||||
@@ -809,33 +825,42 @@ mod tests {
|
||||
let sslot = Slot::new(0);
|
||||
|
||||
let moduli = config.to_moduli().unwrap();
|
||||
let payload_status = StatePayloadStatus::Pending;
|
||||
|
||||
// Full snapshots at multiples of 2^21.
|
||||
let snapshot_freq = Slot::new(1 << 21);
|
||||
assert_eq!(
|
||||
moduli.storage_strategy(Slot::new(0), sslot).unwrap(),
|
||||
moduli
|
||||
.storage_strategy(Slot::new(0), sslot, payload_status)
|
||||
.unwrap(),
|
||||
StorageStrategy::Snapshot
|
||||
);
|
||||
assert_eq!(
|
||||
moduli.storage_strategy(snapshot_freq, sslot).unwrap(),
|
||||
moduli
|
||||
.storage_strategy(snapshot_freq, sslot, payload_status)
|
||||
.unwrap(),
|
||||
StorageStrategy::Snapshot
|
||||
);
|
||||
assert_eq!(
|
||||
moduli.storage_strategy(snapshot_freq * 3, sslot).unwrap(),
|
||||
moduli
|
||||
.storage_strategy(snapshot_freq * 3, sslot, payload_status)
|
||||
.unwrap(),
|
||||
StorageStrategy::Snapshot
|
||||
);
|
||||
|
||||
// Diffs should be from the previous layer (the snapshot in this case), and not the previous diff in the same layer.
|
||||
let first_layer = Slot::new(1 << 18);
|
||||
assert_eq!(
|
||||
moduli.storage_strategy(first_layer * 2, sslot).unwrap(),
|
||||
moduli
|
||||
.storage_strategy(first_layer * 2, sslot, payload_status)
|
||||
.unwrap(),
|
||||
StorageStrategy::DiffFrom(Slot::new(0))
|
||||
);
|
||||
|
||||
let replay_strategy_slot = first_layer + 1;
|
||||
assert_eq!(
|
||||
moduli
|
||||
.storage_strategy(replay_strategy_slot, sslot)
|
||||
.storage_strategy(replay_strategy_slot, sslot, payload_status)
|
||||
.unwrap(),
|
||||
StorageStrategy::ReplayFrom(first_layer)
|
||||
);
|
||||
|
||||
@@ -452,15 +452,26 @@ impl<E: EthSpec> HotColdDB<E, BeaconNodeBackend<E>, BeaconNodeBackend<E>> {
|
||||
}
|
||||
|
||||
impl<E: EthSpec, Hot: ItemStore<E>, Cold: ItemStore<E>> HotColdDB<E, Hot, Cold> {
|
||||
fn cold_storage_strategy(&self, slot: Slot) -> Result<StorageStrategy, Error> {
|
||||
fn cold_storage_strategy(
|
||||
&self,
|
||||
slot: Slot,
|
||||
// payload_status: StatePayloadStatus,
|
||||
) -> Result<StorageStrategy, Error> {
|
||||
// The start slot for the freezer HDiff is always 0
|
||||
Ok(self.hierarchy.storage_strategy(slot, Slot::new(0))?)
|
||||
}
|
||||
|
||||
pub fn hot_storage_strategy(&self, slot: Slot) -> Result<StorageStrategy, Error> {
|
||||
// TODO(gloas): wire up payload_status
|
||||
Ok(self
|
||||
.hierarchy
|
||||
.storage_strategy(slot, self.hot_hdiff_start_slot()?)?)
|
||||
.storage_strategy(slot, Slot::new(0), StatePayloadStatus::Pending)?)
|
||||
}
|
||||
|
||||
pub fn hot_storage_strategy(
|
||||
&self,
|
||||
slot: Slot,
|
||||
payload_status: StatePayloadStatus,
|
||||
) -> Result<StorageStrategy, Error> {
|
||||
Ok(self
|
||||
.hierarchy
|
||||
.storage_strategy(slot, self.hot_hdiff_start_slot()?, payload_status)?)
|
||||
}
|
||||
|
||||
pub fn hot_hdiff_start_slot(&self) -> Result<Slot, Error> {
|
||||
@@ -1380,8 +1391,11 @@ impl<E: EthSpec, Hot: ItemStore<E>, Cold: ItemStore<E>> HotColdDB<E, Hot, Cold>
|
||||
// NOTE: `hot_storage_strategy` can error if there are states in the database
|
||||
// prior to the `anchor_slot`. This can happen if checkpoint sync has been
|
||||
// botched and left some states in the database prior to completing.
|
||||
// Use `Pending` status here because snapshots and diffs are only stored for
|
||||
// `Pending` states.
|
||||
if let Some(slot) = slot
|
||||
&& let Ok(strategy) = self.hot_storage_strategy(slot)
|
||||
&& let Ok(strategy) =
|
||||
self.hot_storage_strategy(slot, StatePayloadStatus::Pending)
|
||||
{
|
||||
match strategy {
|
||||
StorageStrategy::Snapshot => {
|
||||
@@ -1643,6 +1657,8 @@ impl<E: EthSpec, Hot: ItemStore<E>, Cold: ItemStore<E>> HotColdDB<E, Hot, Cold>
|
||||
state: &BeaconState<E>,
|
||||
ops: &mut Vec<KeyValueStoreOp>,
|
||||
) -> Result<(), Error> {
|
||||
let payload_status = state.payload_status();
|
||||
|
||||
match self.state_cache.lock().put_state(
|
||||
*state_root,
|
||||
state.get_latest_block_root(*state_root),
|
||||
@@ -1688,7 +1704,7 @@ impl<E: EthSpec, Hot: ItemStore<E>, Cold: ItemStore<E>> HotColdDB<E, Hot, Cold>
|
||||
debug!(
|
||||
?state_root,
|
||||
slot = %state.slot(),
|
||||
storage_strategy = ?self.hot_storage_strategy(state.slot())?,
|
||||
storage_strategy = ?self.hot_storage_strategy(state.slot(), payload_status)?,
|
||||
diff_base_state = %summary.diff_base_state,
|
||||
previous_state_root = ?summary.previous_state_root,
|
||||
"Storing hot state summary and diffs"
|
||||
@@ -1711,7 +1727,7 @@ impl<E: EthSpec, Hot: ItemStore<E>, Cold: ItemStore<E>> HotColdDB<E, Hot, Cold>
|
||||
self,
|
||||
*state_root,
|
||||
state,
|
||||
self.hot_storage_strategy(state.slot())?,
|
||||
self.hot_storage_strategy(state.slot(), state.payload_status())?,
|
||||
)?;
|
||||
ops.push(hot_state_summary.as_kv_store_op(*state_root));
|
||||
Ok(hot_state_summary)
|
||||
@@ -1724,7 +1740,7 @@ impl<E: EthSpec, Hot: ItemStore<E>, Cold: ItemStore<E>> HotColdDB<E, Hot, Cold>
|
||||
ops: &mut Vec<KeyValueStoreOp>,
|
||||
) -> Result<(), Error> {
|
||||
let slot = state.slot();
|
||||
let storage_strategy = self.hot_storage_strategy(slot)?;
|
||||
let storage_strategy = self.hot_storage_strategy(slot, state.payload_status())?;
|
||||
match storage_strategy {
|
||||
StorageStrategy::ReplayFrom(_) => {
|
||||
// Already have persisted the state summary, don't persist anything else
|
||||
@@ -1884,16 +1900,20 @@ impl<E: EthSpec, Hot: ItemStore<E>, Cold: ItemStore<E>> HotColdDB<E, Hot, Cold>
|
||||
return Ok(buffer);
|
||||
}
|
||||
|
||||
let Some(HotStateSummary {
|
||||
slot,
|
||||
diff_base_state,
|
||||
..
|
||||
}) = self.load_hot_state_summary(&state_root)?
|
||||
let Some(
|
||||
summary @ HotStateSummary {
|
||||
slot,
|
||||
diff_base_state,
|
||||
..
|
||||
},
|
||||
) = self.load_hot_state_summary(&state_root)?
|
||||
else {
|
||||
return Err(Error::MissingHotStateSummary(state_root));
|
||||
};
|
||||
|
||||
let buffer = match self.hot_storage_strategy(slot)? {
|
||||
let payload_status = self.get_hot_state_summary_payload_status(&summary)?;
|
||||
|
||||
let buffer = match self.hot_storage_strategy(slot, payload_status)? {
|
||||
StorageStrategy::Snapshot => {
|
||||
let Some(state) = self.load_hot_state_as_snapshot(state_root)? else {
|
||||
let existing_snapshots = self.load_hot_state_snapshot_roots()?;
|
||||
@@ -1979,7 +1999,8 @@ impl<E: EthSpec, Hot: ItemStore<E>, Cold: ItemStore<E>> HotColdDB<E, Hot, Cold>
|
||||
},
|
||||
) = self.load_hot_state_summary(state_root)?
|
||||
{
|
||||
let mut state = match self.hot_storage_strategy(slot)? {
|
||||
let payload_status = self.get_hot_state_summary_payload_status(&summary)?;
|
||||
let mut state = match self.hot_storage_strategy(slot, payload_status)? {
|
||||
strat @ StorageStrategy::Snapshot | strat @ StorageStrategy::DiffFrom(_) => {
|
||||
let buffer_timer = metrics::start_timer_vec(
|
||||
&metrics::BEACON_HDIFF_BUFFER_LOAD_TIME,
|
||||
@@ -2026,8 +2047,6 @@ impl<E: EthSpec, Hot: ItemStore<E>, Cold: ItemStore<E>> HotColdDB<E, Hot, Cold>
|
||||
.lock()
|
||||
.rebase_on_finalized(&mut base_state, &self.spec)?;
|
||||
|
||||
let payload_status = self.get_hot_state_summary_payload_status(&summary)?;
|
||||
|
||||
self.load_hot_state_using_replay(
|
||||
base_state,
|
||||
slot,
|
||||
|
||||
Reference in New Issue
Block a user