-
Notifications
You must be signed in to change notification settings - Fork 62
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
fix(network): collect all spends and store the first two ordered spends #1904
Changes from all commits
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 |
---|---|---|
|
@@ -7,17 +7,21 @@ | |
// permissions and limitations relating to use of the SAFE Network Software. | ||
|
||
use crate::{ | ||
driver::PendingGetClosestType, get_quorum_value, GetRecordCfg, GetRecordError, NetworkError, | ||
Result, SwarmDriver, CLOSE_GROUP_SIZE, | ||
driver::PendingGetClosestType, get_quorum_value, get_raw_signed_spends_from_record, | ||
GetRecordCfg, GetRecordError, NetworkError, Result, SwarmDriver, CLOSE_GROUP_SIZE, | ||
}; | ||
use itertools::Itertools; | ||
use libp2p::kad::{ | ||
self, GetClosestPeersError, InboundRequest, PeerRecord, ProgressStep, QueryId, QueryResult, | ||
QueryStats, Record, K_VALUE, | ||
}; | ||
use sn_protocol::PrettyPrintRecordKey; | ||
use sn_protocol::{ | ||
storage::{try_serialize_record, RecordKind}, | ||
PrettyPrintRecordKey, | ||
}; | ||
use sn_transfers::SignedSpend; | ||
use std::{ | ||
collections::{hash_map::Entry, HashSet}, | ||
collections::{hash_map::Entry, BTreeSet, HashSet}, | ||
time::Instant, | ||
}; | ||
use tokio::sync::oneshot; | ||
|
@@ -395,9 +399,40 @@ impl SwarmDriver { | |
Self::send_record_after_checking_target(sender, peer_record.record, &cfg)?; | ||
} else { | ||
debug!("For record {pretty_key:?} task {query_id:?}, fetch completed with split record"); | ||
sender | ||
.send(Err(GetRecordError::SplitRecord { result_map })) | ||
.map_err(|_| NetworkError::InternalMsgChannelDropped)?; | ||
let mut accumulated_spends = BTreeSet::new(); | ||
for (record, _) in result_map.values() { | ||
match get_raw_signed_spends_from_record(record) { | ||
Ok(spends) => { | ||
accumulated_spends.extend(spends); | ||
} | ||
Err(_) => { | ||
continue; | ||
} | ||
} | ||
} | ||
if !accumulated_spends.is_empty() { | ||
info!("For record {pretty_key:?} task {query_id:?}, found split record for a spend, accumulated and sending them as a single record"); | ||
let accumulated_spends = accumulated_spends | ||
.into_iter() | ||
.take(2) | ||
.collect::<Vec<SignedSpend>>(); | ||
|
||
let bytes = try_serialize_record(&accumulated_spends, RecordKind::Spend)?; | ||
|
||
let new_accumulated_record = Record { | ||
key: peer_record.record.key, | ||
value: bytes.to_vec(), | ||
publisher: None, | ||
expires: None, | ||
}; | ||
sender | ||
.send(Ok(new_accumulated_record)) | ||
.map_err(|_| NetworkError::InternalMsgChannelDropped)?; | ||
} else { | ||
sender | ||
.send(Err(GetRecordError::SplitRecord { result_map })) | ||
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. if no entry within the accumulated_record, 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. So we have no idea if the record we're GET'ing is a spend here, we just try to read the header and collect them IF they're spends. If not, we assume it is a chunk/register and just return SplitRecordError |
||
.map_err(|_| NetworkError::InternalMsgChannelDropped)?; | ||
} | ||
} | ||
|
||
// Stop the query; possibly stops more nodes from being queried. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why
2
? why not more?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we keep a random magic number here for now, say 50? If so, might have to do the same during PUT validation (we store 2 there).
The lower bound of a single signed spend is 825B. Can grow if the inputs/outputs increase.