Skip to content
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

v2.0: fix: send votes to the immediate next leader (backport of #2607) #2621

Merged
merged 1 commit into from
Aug 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions core/src/next_leader.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,38 @@
use {
itertools::Itertools,
solana_gossip::{cluster_info::ClusterInfo, contact_info::ContactInfo},
solana_poh::poh_recorder::PohRecorder,
solana_sdk::{clock::FORWARD_TRANSACTIONS_TO_LEADER_AT_SLOT_OFFSET, pubkey::Pubkey},
std::{net::SocketAddr, sync::RwLock},
};

/// Returns a list of tpu vote sockets for the leaders of the next N fanout
/// slots. Leaders and sockets are deduped.
pub(crate) fn upcoming_leader_tpu_vote_sockets(
cluster_info: &ClusterInfo,
poh_recorder: &RwLock<PohRecorder>,
fanout_slots: u64,
) -> Vec<SocketAddr> {
let upcoming_leaders = {
let poh_recorder = poh_recorder.read().unwrap();
(1..=fanout_slots)
.filter_map(|n_slots| poh_recorder.leader_after_n_slots(n_slots))
.collect_vec()
};

upcoming_leaders
.into_iter()
.dedup()
.filter_map(|leader_pubkey| {
cluster_info
.lookup_contact_info(&leader_pubkey, ContactInfo::tpu_vote)?
.ok()
})
// dedup again since leaders could potentially share the same tpu vote socket
.dedup()
.collect()
}

pub(crate) fn next_leader_tpu_vote(
cluster_info: &ClusterInfo,
poh_recorder: &RwLock<PohRecorder>,
Expand Down
28 changes: 22 additions & 6 deletions core/src/voting_service.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
use {
crate::{
consensus::tower_storage::{SavedTowerVersions, TowerStorage},
next_leader::next_leader_tpu_vote,
next_leader::upcoming_leader_tpu_vote_sockets,
},
crossbeam_channel::Receiver,
solana_gossip::cluster_info::ClusterInfo,
solana_measure::measure::Measure,
solana_poh::poh_recorder::PohRecorder,
solana_sdk::{clock::Slot, transaction::Transaction},
solana_sdk::{
clock::{Slot, FORWARD_TRANSACTIONS_TO_LEADER_AT_SLOT_OFFSET},
transaction::Transaction,
},
std::{
sync::{Arc, RwLock},
thread::{self, Builder, JoinHandle},
Expand Down Expand Up @@ -78,12 +81,25 @@ impl VotingService {
inc_new_counter_info!("tower_save-ms", measure.as_ms() as usize);
}

let _ = cluster_info.send_transaction(
vote_op.tx(),
next_leader_tpu_vote(cluster_info, poh_recorder)
.map(|(_pubkey, target_addr)| target_addr),
// Attempt to send our vote transaction to the leaders for the next few slots
const UPCOMING_LEADER_FANOUT_SLOTS: u64 = FORWARD_TRANSACTIONS_TO_LEADER_AT_SLOT_OFFSET;
#[cfg(test)]
static_assertions::const_assert_eq!(UPCOMING_LEADER_FANOUT_SLOTS, 2);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there data on why 2 is chosen versus any other number? Also I'm not sure re-using this makes sense. It seems like an offset not a boundary for forwarding.

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2 offset slots is the current behavior of forwarding. This patch minimally changes behavior by additionally sending to the leader at offset spot 1.

Of course we should look closer at forwarding in the future but this change is an incremental improvement on what we have already been doing

let upcoming_leader_sockets = upcoming_leader_tpu_vote_sockets(
cluster_info,
poh_recorder,
UPCOMING_LEADER_FANOUT_SLOTS,
);

if !upcoming_leader_sockets.is_empty() {
for tpu_vote_socket in upcoming_leader_sockets {
let _ = cluster_info.send_transaction(vote_op.tx(), Some(tpu_vote_socket));
}
} else {
// Send to our own tpu vote socket if we cannot find a leader to send to
let _ = cluster_info.send_transaction(vote_op.tx(), None);
}

match vote_op {
VoteOp::PushVote {
tx, tower_slots, ..
Expand Down