mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-01 03:21:02 +00:00
713f6625fa
* Pass the PerLeafSpan as mutable reference to handle_new_head function * cargo +nightly fmt --all * Add mock span for test * cargo +nightly fmt --all * add new-blocks-hashes to span * ref span in match statement, set span to disabled if not passed * remove second match clause, make handle_new_head_span mutable * cargo +nightly fmt --all * improve tag on error and warning * add imported blocks and info span * cargo +nightly fmt --all * Improve error for imported_blocks_and_info trace * format tags on get_header_span * add lost-to-finality tag * add missing bracket * - Add bitfield child span - Add block db insertion span * - fix update-bitfield span tag * - Fix type conversion to u64 - Add missing argument * - Cargo fmt * - Test add_follows_from * - Revert as relationship between spans not working correctly * - use drop to test if parent-child relationship can be re-established * - remove bitfield span, check if parent-child relationship can be reestablished * - Remove dangling bitfield span which is not used, to see if parent-child relationship can be re-established * Another dangling bitfield span * cargo fmt * - add imported blocks and info span - add candidate span per candidate * add tags before moving block_header to push scope * - Add db-insertion span * cargo fmt * fix types * * Pass mutable reference to span in handle_new_head * Change get-header-span tags in handle_new_head * Create cache-session-info span in handle_new_head * Create optional argument in determine_new_blocks * Pass mutable reference to handle_new_head_span in determine_new_blocks in handle_new_head function * Add candidate-hash, candidate-number, lost-to-finality tags to candidate_span in handle_new_head function * Manually drop db_insertion_span and remove superfluous tags to it, only keeping approved-bitfields tag * Add ApprovalVoting stage in jaeger * * Pass mutable reference to jaeger::Span in stead of PerLeafSpan * Add block-import span * *Pass optional_span (optional argument) to determine_new_blocks util function * * Add num-candidates int tag to block_import_span * * Add head tag to cache_session_span * * Create PerLeafSpan in handle_from_overseer (this is required to establish parent-child relationship between approval-voting span, and leaf-activated root span) * * Add candidate-import-span as child of block-import-span * Add candidate-hash and num-approval tags to candidate-import-span * * Fix num-candidate tag to bitvec-len tag in candidate-import-span * *Fix imported_blocKs_and_info span to create new-block-span as not dealing with candidates * Consider the future::select! block * Use HashMap<Hash, jaeger::PerLeafSpan> * Remove Stage 9 * Add missing spans * cargo +nightly fmt --all * Remove optional span argument for determine_new_blocks * * Remove no-longer needed default PerLeafSpan implementation * Remove no-longer necessary mock span given re-factoring of handle_new_head() no longer neeing mutable span * Split validation-result and request-data (availability and validation code) spans into two by dropping request_validation_data_spans * Remove drop statements for cache_session_info_span * * Remove unnecessary span * Remove another excessively spammy span * Add missing spans from State in import tests * Use functional approach to get spans * - Add functional approach for the approval-voting span - Add doc on block_numbers given labelling ambiguity - Add span pruning logic - Use .add_para_id on validation_result_span * Replace for hash_set in hash_set_iter with map closure * cargo +nightly fmt --all * Change from unconsumed `map` to `.for_each` * cargo +nightly fmt --all * Refactor add_para_id to validation_result_span * cargo +nightly fmt --all * Remove duplicate tag * Add missing tag to handle-approved-ancestor span * Refactor span pruning to only invoke retain once * Typo in span name * - Replace unwrap_or with unwrap_or_else due to lazy evaluation of trace-identifier in polkadot_node_jaeger - Remove some redundant spans * Add approval-distribution spans * - Add unwrap_or_else on note-approved-in-chain-selection - Use child_with_trace_id to add traceID string tag on span (note this does not change the traceID, but just adds a tag) * cargo +nightly fmt --all * - Add traceID tags were necessary in approval-voting and availability-distribution - Always use block-hash tag in stead of relay-parent tag in approval-distribution * Remove schedule-wakeup span as it will duplicate spans on existing wakeups (which should be a no-op) * Remove a couple of warnings related to mutability * Fix failing tests in availability distribution * Add traceID tag to launch-approval and validation-result * Reshuffle the validation and validation result spans to where more appropriate and add block-hash tag * - Add tranche and should-trigger tag to process-wakeup span - Add candidate-hash and traceID to check-and-import-approval span * cargo fmt * - Adjustments after PR comments * Move span pruning after other pruning logic * Remove DerefMut - no longer needed * Relabel request-chunk spans * - Fix typo in span label - Add docs for drops * Add new approval-voting span pruning logic * Undo removal of ! * cargo fmt
261 lines
7.0 KiB
Rust
261 lines
7.0 KiB
Rust
// Copyright 2021 Parity Technologies (UK) Ltd.
|
|
// This file is part of Polkadot.
|
|
|
|
// Polkadot is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Polkadot is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Polkadot. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! Answer requests for availability chunks.
|
|
|
|
use std::sync::Arc;
|
|
|
|
use futures::channel::oneshot;
|
|
|
|
use fatality::Nested;
|
|
use polkadot_node_network_protocol::{
|
|
request_response::{v1, IncomingRequest, IncomingRequestReceiver},
|
|
UnifiedReputationChange as Rep,
|
|
};
|
|
use polkadot_node_primitives::{AvailableData, ErasureChunk};
|
|
use polkadot_node_subsystem::{jaeger, messages::AvailabilityStoreMessage, SubsystemSender};
|
|
use polkadot_primitives::{CandidateHash, ValidatorIndex};
|
|
|
|
use crate::{
|
|
error::{JfyiError, Result},
|
|
metrics::{Metrics, FAILED, NOT_FOUND, SUCCEEDED},
|
|
LOG_TARGET,
|
|
};
|
|
|
|
const COST_INVALID_REQUEST: Rep = Rep::CostMajor("Received message could not be decoded.");
|
|
|
|
/// Receiver task to be forked as a separate task to handle PoV requests.
|
|
pub async fn run_pov_receiver<Sender>(
|
|
mut sender: Sender,
|
|
mut receiver: IncomingRequestReceiver<v1::PoVFetchingRequest>,
|
|
metrics: Metrics,
|
|
) where
|
|
Sender: SubsystemSender<AvailabilityStoreMessage>,
|
|
{
|
|
loop {
|
|
match receiver.recv(|| vec![COST_INVALID_REQUEST]).await.into_nested() {
|
|
Ok(Ok(msg)) => {
|
|
answer_pov_request_log(&mut sender, msg, &metrics).await;
|
|
},
|
|
Err(fatal) => {
|
|
gum::debug!(
|
|
target: LOG_TARGET,
|
|
error = ?fatal,
|
|
"Shutting down POV receiver."
|
|
);
|
|
return
|
|
},
|
|
Ok(Err(jfyi)) => {
|
|
gum::debug!(target: LOG_TARGET, error = ?jfyi, "Error decoding incoming PoV request.");
|
|
},
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Receiver task to be forked as a separate task to handle chunk requests.
|
|
pub async fn run_chunk_receiver<Sender>(
|
|
mut sender: Sender,
|
|
mut receiver: IncomingRequestReceiver<v1::ChunkFetchingRequest>,
|
|
metrics: Metrics,
|
|
) where
|
|
Sender: SubsystemSender<AvailabilityStoreMessage>,
|
|
{
|
|
loop {
|
|
match receiver.recv(|| vec![COST_INVALID_REQUEST]).await.into_nested() {
|
|
Ok(Ok(msg)) => {
|
|
answer_chunk_request_log(&mut sender, msg, &metrics).await;
|
|
},
|
|
Err(fatal) => {
|
|
gum::debug!(
|
|
target: LOG_TARGET,
|
|
error = ?fatal,
|
|
"Shutting down chunk receiver."
|
|
);
|
|
return
|
|
},
|
|
Ok(Err(jfyi)) => {
|
|
gum::debug!(
|
|
target: LOG_TARGET,
|
|
error = ?jfyi,
|
|
"Error decoding incoming chunk request."
|
|
);
|
|
},
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Variant of `answer_pov_request` that does Prometheus metric and logging on errors.
|
|
///
|
|
/// Any errors of `answer_pov_request` will simply be logged.
|
|
pub async fn answer_pov_request_log<Sender>(
|
|
sender: &mut Sender,
|
|
req: IncomingRequest<v1::PoVFetchingRequest>,
|
|
metrics: &Metrics,
|
|
) where
|
|
Sender: SubsystemSender<AvailabilityStoreMessage>,
|
|
{
|
|
let res = answer_pov_request(sender, req).await;
|
|
match res {
|
|
Ok(result) => metrics.on_served_pov(if result { SUCCEEDED } else { NOT_FOUND }),
|
|
Err(err) => {
|
|
gum::warn!(
|
|
target: LOG_TARGET,
|
|
err= ?err,
|
|
"Serving PoV failed with error"
|
|
);
|
|
metrics.on_served_pov(FAILED);
|
|
},
|
|
}
|
|
}
|
|
|
|
/// Variant of `answer_chunk_request` that does Prometheus metric and logging on errors.
|
|
///
|
|
/// Any errors of `answer_request` will simply be logged.
|
|
pub async fn answer_chunk_request_log<Sender>(
|
|
sender: &mut Sender,
|
|
req: IncomingRequest<v1::ChunkFetchingRequest>,
|
|
metrics: &Metrics,
|
|
) -> ()
|
|
where
|
|
Sender: SubsystemSender<AvailabilityStoreMessage>,
|
|
{
|
|
let res = answer_chunk_request(sender, req).await;
|
|
match res {
|
|
Ok(result) => metrics.on_served_chunk(if result { SUCCEEDED } else { NOT_FOUND }),
|
|
Err(err) => {
|
|
gum::warn!(
|
|
target: LOG_TARGET,
|
|
err= ?err,
|
|
"Serving chunk failed with error"
|
|
);
|
|
metrics.on_served_chunk(FAILED);
|
|
},
|
|
}
|
|
}
|
|
|
|
/// Answer an incoming PoV fetch request by querying the av store.
|
|
///
|
|
/// Returns: `Ok(true)` if chunk was found and served.
|
|
pub async fn answer_pov_request<Sender>(
|
|
sender: &mut Sender,
|
|
req: IncomingRequest<v1::PoVFetchingRequest>,
|
|
) -> Result<bool>
|
|
where
|
|
Sender: SubsystemSender<AvailabilityStoreMessage>,
|
|
{
|
|
let _span = jaeger::Span::new(req.payload.candidate_hash, "answer-pov-request");
|
|
|
|
let av_data = query_available_data(sender, req.payload.candidate_hash).await?;
|
|
|
|
let result = av_data.is_some();
|
|
|
|
let response = match av_data {
|
|
None => v1::PoVFetchingResponse::NoSuchPoV,
|
|
Some(av_data) => {
|
|
let pov = Arc::try_unwrap(av_data.pov).unwrap_or_else(|a| (&*a).clone());
|
|
v1::PoVFetchingResponse::PoV(pov)
|
|
},
|
|
};
|
|
|
|
req.send_response(response).map_err(|_| JfyiError::SendResponse)?;
|
|
Ok(result)
|
|
}
|
|
|
|
/// Answer an incoming chunk request by querying the av store.
|
|
///
|
|
/// Returns: `Ok(true)` if chunk was found and served.
|
|
pub async fn answer_chunk_request<Sender>(
|
|
sender: &mut Sender,
|
|
req: IncomingRequest<v1::ChunkFetchingRequest>,
|
|
) -> Result<bool>
|
|
where
|
|
Sender: SubsystemSender<AvailabilityStoreMessage>,
|
|
{
|
|
let span = jaeger::Span::new(req.payload.candidate_hash, "answer-chunk-request");
|
|
|
|
let _child_span = span
|
|
.child("answer-chunk-request")
|
|
.with_trace_id(req.payload.candidate_hash)
|
|
.with_chunk_index(req.payload.index.0);
|
|
|
|
let chunk = query_chunk(sender, req.payload.candidate_hash, req.payload.index).await?;
|
|
|
|
let result = chunk.is_some();
|
|
|
|
gum::trace!(
|
|
target: LOG_TARGET,
|
|
hash = ?req.payload.candidate_hash,
|
|
index = ?req.payload.index,
|
|
peer = ?req.peer,
|
|
has_data = ?chunk.is_some(),
|
|
"Serving chunk",
|
|
);
|
|
|
|
let response = match chunk {
|
|
None => v1::ChunkFetchingResponse::NoSuchChunk,
|
|
Some(chunk) => v1::ChunkFetchingResponse::Chunk(chunk.into()),
|
|
};
|
|
|
|
req.send_response(response).map_err(|_| JfyiError::SendResponse)?;
|
|
Ok(result)
|
|
}
|
|
|
|
/// Query chunk from the availability store.
|
|
async fn query_chunk<Sender>(
|
|
sender: &mut Sender,
|
|
candidate_hash: CandidateHash,
|
|
validator_index: ValidatorIndex,
|
|
) -> std::result::Result<Option<ErasureChunk>, JfyiError>
|
|
where
|
|
Sender: SubsystemSender<AvailabilityStoreMessage>,
|
|
{
|
|
let (tx, rx) = oneshot::channel();
|
|
sender
|
|
.send_message(
|
|
AvailabilityStoreMessage::QueryChunk(candidate_hash, validator_index, tx).into(),
|
|
)
|
|
.await;
|
|
|
|
let result = rx.await.map_err(|e| {
|
|
gum::trace!(
|
|
target: LOG_TARGET,
|
|
?validator_index,
|
|
?candidate_hash,
|
|
error = ?e,
|
|
"Error retrieving chunk",
|
|
);
|
|
JfyiError::QueryChunkResponseChannel(e)
|
|
})?;
|
|
Ok(result)
|
|
}
|
|
|
|
/// Query PoV from the availability store.
|
|
async fn query_available_data<Sender>(
|
|
sender: &mut Sender,
|
|
candidate_hash: CandidateHash,
|
|
) -> Result<Option<AvailableData>>
|
|
where
|
|
Sender: SubsystemSender<AvailabilityStoreMessage>,
|
|
{
|
|
let (tx, rx) = oneshot::channel();
|
|
sender
|
|
.send_message(AvailabilityStoreMessage::QueryAvailableData(candidate_hash, tx).into())
|
|
.await;
|
|
|
|
let result = rx.await.map_err(JfyiError::QueryAvailableDataResponseChannel)?;
|
|
Ok(result)
|
|
}
|