mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-20 18:41:01 +00:00
Reduce provisioner work (#12749)
* Move create_inherent_data call to use side * Make provide_inherent_data async * Fix tests * Apply suggestions from code review Co-authored-by: Bastian Köcher <git@kchr.de> * Log errors * Fix test * Fix test * fix * Deduplicate test code * fix * flag * Update client/consensus/slots/src/lib.rs Co-authored-by: Bastian Köcher <git@kchr.de> * Revert "Deduplicate test code" This reverts commit ba46adbe089329c78cd69ccdb08e27ed67bd77cf. * Fix test * remove commented out code * minor to start CI run * start CI * Update client/consensus/slots/src/lib.rs Co-authored-by: Marcin S. <marcin@bytedude.com> * Apply PR suggestions * Apply PR suggestions * Update client/consensus/slots/src/lib.rs Co-authored-by: Bastian Köcher <git@kchr.de> * minor * kickoff CI * PR suggestions * Compute remaining duration instead of using slot_info.duration * Don't rely on sub implementation for Instant * Apply PR suggestions * Use saturating_duration_since Co-authored-by: Bastian Köcher <git@kchr.de> Co-authored-by: Marcin S. <marcin@bytedude.com> Co-authored-by: parity-processbot <>
This commit is contained in:
@@ -42,7 +42,11 @@ use sp_consensus::{Proposal, Proposer, SelectChain, SyncOracle};
|
||||
use sp_consensus_slots::{Slot, SlotDuration};
|
||||
use sp_inherents::CreateInherentDataProviders;
|
||||
use sp_runtime::traits::{Block as BlockT, HashFor, Header as HeaderT};
|
||||
use std::{fmt::Debug, ops::Deref, time::Duration};
|
||||
use std::{
|
||||
fmt::Debug,
|
||||
ops::Deref,
|
||||
time::{Duration, Instant},
|
||||
};
|
||||
|
||||
/// The changes that need to applied to the storage to create the state for a block.
|
||||
///
|
||||
@@ -195,6 +199,9 @@ pub trait SimpleSlotWorker<B: BlockT> {
|
||||
let slot = slot_info.slot;
|
||||
let telemetry = self.telemetry();
|
||||
let logging_target = self.logging_target();
|
||||
|
||||
let inherent_data = Self::create_inherent_data(&slot_info, &logging_target).await?;
|
||||
|
||||
let proposing_remaining_duration = self.proposing_remaining_duration(&slot_info);
|
||||
let logs = self.pre_digest_data(slot, claim);
|
||||
|
||||
@@ -203,7 +210,7 @@ pub trait SimpleSlotWorker<B: BlockT> {
|
||||
// the result to be returned.
|
||||
let proposing = proposer
|
||||
.propose(
|
||||
slot_info.inherent_data,
|
||||
inherent_data,
|
||||
sp_runtime::generic::Digest { logs },
|
||||
proposing_remaining_duration.mul_f32(0.98),
|
||||
None,
|
||||
@@ -242,6 +249,41 @@ pub trait SimpleSlotWorker<B: BlockT> {
|
||||
Some(proposal)
|
||||
}
|
||||
|
||||
/// Calls `create_inherent_data` and handles errors.
|
||||
async fn create_inherent_data(
|
||||
slot_info: &SlotInfo<B>,
|
||||
logging_target: &str,
|
||||
) -> Option<sp_inherents::InherentData> {
|
||||
let remaining_duration = slot_info.ends_at.saturating_duration_since(Instant::now());
|
||||
let delay = Delay::new(remaining_duration);
|
||||
let cid = slot_info.create_inherent_data.create_inherent_data();
|
||||
let inherent_data = match futures::future::select(delay, cid).await {
|
||||
Either::Right((Ok(data), _)) => data,
|
||||
Either::Right((Err(err), _)) => {
|
||||
warn!(
|
||||
target: logging_target,
|
||||
"Unable to create inherent data for block {:?}: {}",
|
||||
slot_info.chain_head.hash(),
|
||||
err,
|
||||
);
|
||||
|
||||
return None
|
||||
},
|
||||
Either::Left(_) => {
|
||||
warn!(
|
||||
target: logging_target,
|
||||
"Creating inherent data took more time than we had left for slot {} for block {:?}.",
|
||||
slot_info.slot,
|
||||
slot_info.chain_head.hash(),
|
||||
);
|
||||
|
||||
return None
|
||||
},
|
||||
};
|
||||
|
||||
Some(inherent_data)
|
||||
}
|
||||
|
||||
/// Implements [`SlotWorker::on_slot`].
|
||||
async fn on_slot(
|
||||
&mut self,
|
||||
@@ -474,7 +516,7 @@ pub async fn start_slot_worker<B, C, W, SO, CIDP, Proof>(
|
||||
C: SelectChain<B>,
|
||||
W: SlotWorker<B, Proof>,
|
||||
SO: SyncOracle + Send,
|
||||
CIDP: CreateInherentDataProviders<B, ()> + Send,
|
||||
CIDP: CreateInherentDataProviders<B, ()> + Send + 'static,
|
||||
CIDP::InherentDataProviders: InherentDataProviderExt + Send,
|
||||
{
|
||||
let mut slots = Slots::new(slot_duration.as_duration(), create_inherent_data_providers, client);
|
||||
@@ -786,7 +828,7 @@ mod test {
|
||||
super::slots::SlotInfo {
|
||||
slot: slot.into(),
|
||||
duration: SLOT_DURATION,
|
||||
inherent_data: Default::default(),
|
||||
create_inherent_data: Box::new(()),
|
||||
ends_at: Instant::now() + SLOT_DURATION,
|
||||
chain_head: Header::new(
|
||||
1,
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
|
||||
use super::{InherentDataProviderExt, Slot};
|
||||
use sp_consensus::{Error, SelectChain};
|
||||
use sp_inherents::{CreateInherentDataProviders, InherentData, InherentDataProvider};
|
||||
use sp_inherents::{CreateInherentDataProviders, InherentDataProvider};
|
||||
use sp_runtime::traits::{Block as BlockT, Header as HeaderT};
|
||||
|
||||
use futures_timer::Delay;
|
||||
@@ -52,8 +52,8 @@ pub struct SlotInfo<B: BlockT> {
|
||||
pub slot: Slot,
|
||||
/// The instant at which the slot ends.
|
||||
pub ends_at: Instant,
|
||||
/// The inherent data.
|
||||
pub inherent_data: InherentData,
|
||||
/// The inherent data provider.
|
||||
pub create_inherent_data: Box<dyn InherentDataProvider>,
|
||||
/// Slot duration.
|
||||
pub duration: Duration,
|
||||
/// The chain header this slot is based on.
|
||||
@@ -70,14 +70,14 @@ impl<B: BlockT> SlotInfo<B> {
|
||||
/// `ends_at` is calculated using `timestamp` and `duration`.
|
||||
pub fn new(
|
||||
slot: Slot,
|
||||
inherent_data: InherentData,
|
||||
create_inherent_data: Box<dyn InherentDataProvider>,
|
||||
duration: Duration,
|
||||
chain_head: B::Header,
|
||||
block_size_limit: Option<usize>,
|
||||
) -> Self {
|
||||
Self {
|
||||
slot,
|
||||
inherent_data,
|
||||
create_inherent_data,
|
||||
duration,
|
||||
chain_head,
|
||||
block_size_limit,
|
||||
@@ -118,7 +118,7 @@ impl<Block, SC, IDP> Slots<Block, SC, IDP>
|
||||
where
|
||||
Block: BlockT,
|
||||
SC: SelectChain<Block>,
|
||||
IDP: CreateInherentDataProviders<Block, ()>,
|
||||
IDP: CreateInherentDataProviders<Block, ()> + 'static,
|
||||
IDP::InherentDataProviders: crate::InherentDataProviderExt,
|
||||
{
|
||||
/// Returns a future that fires when the next slot starts.
|
||||
@@ -142,9 +142,6 @@ where
|
||||
|
||||
// reschedule delay for next slot.
|
||||
self.inner_delay = Some(Delay::new(ends_in));
|
||||
|
||||
let ends_at = Instant::now() + ends_in;
|
||||
|
||||
let chain_head = match self.select_chain.best_chain().await {
|
||||
Ok(x) => x,
|
||||
Err(e) => {
|
||||
@@ -164,21 +161,19 @@ where
|
||||
.create_inherent_data_providers(chain_head.hash(), ())
|
||||
.await?;
|
||||
|
||||
if Instant::now() > ends_at {
|
||||
log::warn!(
|
||||
target: "slots",
|
||||
"Creating inherent data providers took more time than we had left for the slot.",
|
||||
);
|
||||
}
|
||||
|
||||
let slot = inherent_data_providers.slot();
|
||||
let inherent_data = inherent_data_providers.create_inherent_data()?;
|
||||
|
||||
// never yield the same slot twice.
|
||||
if slot > self.last_slot {
|
||||
self.last_slot = slot;
|
||||
|
||||
break Ok(SlotInfo::new(slot, inherent_data, self.slot_duration, chain_head, None))
|
||||
break Ok(SlotInfo::new(
|
||||
slot,
|
||||
Box::new(inherent_data_providers),
|
||||
self.slot_duration,
|
||||
chain_head,
|
||||
None,
|
||||
))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user