-
Notifications
You must be signed in to change notification settings - Fork 964
Wait before column reconstruction #7588
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 10 commits
1eee636
bef3344
e2216c0
65e5ac4
c7f5211
f813767
b2f7a5b
492d73c
b7c0dd1
891af69
5a24f45
36ca44d
0ee7abf
ab94e8a
19113d1
719df16
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -39,7 +39,7 @@ | |||
| //! task. | ||||
|
|
||||
| use crate::work_reprocessing_queue::{ | ||||
| QueuedBackfillBatch, QueuedGossipBlock, ReprocessQueueMessage, | ||||
| QueuedBackfillBatch, QueuedColumnReconstruction, QueuedGossipBlock, ReprocessQueueMessage, | ||||
| }; | ||||
| use futures::stream::{Stream, StreamExt}; | ||||
| use futures::task::Poll; | ||||
|
|
@@ -117,6 +117,7 @@ pub struct BeaconProcessorQueueLengths { | |||
| rpc_custody_column_queue: usize, | ||||
| rpc_verify_data_column_queue: usize, | ||||
| sampling_result_queue: usize, | ||||
| column_reconstruction_queue: usize, | ||||
| chain_segment_queue: usize, | ||||
| backfill_chain_segment: usize, | ||||
| gossip_block_queue: usize, | ||||
|
|
@@ -184,6 +185,7 @@ impl BeaconProcessorQueueLengths { | |||
| rpc_verify_data_column_queue: 1000, | ||||
| unknown_block_sampling_request_queue: 16384, | ||||
| sampling_result_queue: 1000, | ||||
| column_reconstruction_queue: 64, | ||||
| chain_segment_queue: 64, | ||||
| backfill_chain_segment: 64, | ||||
| gossip_block_queue: 1024, | ||||
|
|
@@ -498,6 +500,12 @@ impl<E: EthSpec> From<ReadyWork> for WorkEvent<E> { | |||
| drop_during_sync: false, | ||||
| work: Work::ChainSegmentBackfill(process_fn), | ||||
| }, | ||||
| ReadyWork::ColumnReconstruction(QueuedColumnReconstruction { process_fn, .. }) => { | ||||
| Self { | ||||
| drop_during_sync: true, | ||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Note that we will never perform reconstruction during sync (which is also an upcoming feature), but i think we can think about it a bit more. |
||||
| work: Work::ColumnReconstruction(process_fn), | ||||
| } | ||||
| } | ||||
| } | ||||
| } | ||||
| } | ||||
|
|
@@ -619,6 +627,7 @@ pub enum Work<E: EthSpec> { | |||
| RpcCustodyColumn(AsyncFn), | ||||
| RpcVerifyDataColumn(AsyncFn), | ||||
| SamplingResult(AsyncFn), | ||||
| ColumnReconstruction(AsyncFn), | ||||
| IgnoredRpcBlock { | ||||
| process_fn: BlockingFn, | ||||
| }, | ||||
|
|
@@ -674,6 +683,7 @@ pub enum WorkType { | |||
| RpcCustodyColumn, | ||||
| RpcVerifyDataColumn, | ||||
| SamplingResult, | ||||
| ColumnReconstruction, | ||||
| IgnoredRpcBlock, | ||||
| ChainSegment, | ||||
| ChainSegmentBackfill, | ||||
|
|
@@ -725,6 +735,7 @@ impl<E: EthSpec> Work<E> { | |||
| Work::RpcCustodyColumn { .. } => WorkType::RpcCustodyColumn, | ||||
| Work::RpcVerifyDataColumn { .. } => WorkType::RpcVerifyDataColumn, | ||||
| Work::SamplingResult { .. } => WorkType::SamplingResult, | ||||
| Work::ColumnReconstruction(_) => WorkType::ColumnReconstruction, | ||||
| Work::IgnoredRpcBlock { .. } => WorkType::IgnoredRpcBlock, | ||||
| Work::ChainSegment { .. } => WorkType::ChainSegment, | ||||
| Work::ChainSegmentBackfill(_) => WorkType::ChainSegmentBackfill, | ||||
|
|
@@ -891,6 +902,8 @@ impl<E: EthSpec> BeaconProcessor<E> { | |||
| FifoQueue::new(queue_lengths.rpc_verify_data_column_queue); | ||||
| // TODO(das): the sampling_request_queue is never read | ||||
| let mut sampling_result_queue = FifoQueue::new(queue_lengths.sampling_result_queue); | ||||
| let mut column_reconstruction_queue = | ||||
| FifoQueue::new(queue_lengths.column_reconstruction_queue); | ||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we never pop from this queue. Need to add it somewhere in this block based on priority
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Addressed in 719df16 |
||||
| let mut unknown_block_sampling_request_queue = | ||||
| FifoQueue::new(queue_lengths.unknown_block_sampling_request_queue); | ||||
| let mut chain_segment_queue = FifoQueue::new(queue_lengths.chain_segment_queue); | ||||
|
|
@@ -1371,6 +1384,9 @@ impl<E: EthSpec> BeaconProcessor<E> { | |||
| rpc_verify_data_column_queue.push(work, work_id) | ||||
| } | ||||
| Work::SamplingResult(_) => sampling_result_queue.push(work, work_id), | ||||
| Work::ColumnReconstruction(_) => { | ||||
| column_reconstruction_queue.push(work, work_id) | ||||
| } | ||||
| Work::ChainSegment { .. } => chain_segment_queue.push(work, work_id), | ||||
| Work::ChainSegmentBackfill { .. } => { | ||||
| backfill_chain_segment.push(work, work_id) | ||||
|
|
@@ -1460,6 +1476,7 @@ impl<E: EthSpec> BeaconProcessor<E> { | |||
| WorkType::RpcCustodyColumn => rpc_custody_column_queue.len(), | ||||
| WorkType::RpcVerifyDataColumn => rpc_verify_data_column_queue.len(), | ||||
| WorkType::SamplingResult => sampling_result_queue.len(), | ||||
| WorkType::ColumnReconstruction => column_reconstruction_queue.len(), | ||||
| WorkType::ChainSegment => chain_segment_queue.len(), | ||||
| WorkType::ChainSegmentBackfill => backfill_chain_segment.len(), | ||||
| WorkType::Status => status_queue.len(), | ||||
|
|
@@ -1602,7 +1619,8 @@ impl<E: EthSpec> BeaconProcessor<E> { | |||
| | Work::RpcBlobs { process_fn } | ||||
| | Work::RpcCustodyColumn(process_fn) | ||||
| | Work::RpcVerifyDataColumn(process_fn) | ||||
| | Work::SamplingResult(process_fn) => task_spawner.spawn_async(process_fn), | ||||
| | Work::SamplingResult(process_fn) | ||||
| | Work::ColumnReconstruction(process_fn) => task_spawner.spawn_async(process_fn), | ||||
| Work::IgnoredRpcBlock { process_fn } => task_spawner.spawn_blocking(process_fn), | ||||
| Work::GossipBlock(work) | ||||
| | Work::GossipBlobSidecar(work) | ||||
|
|
||||
Uh oh!
There was an error while loading. Please reload this page.