Priority fee related statistics
This commit is contained in:
parent
92cc790fef
commit
596957f65e
|
@ -69,14 +69,14 @@ pub struct QuicConnectionParameters {
|
|||
impl Default for QuicConnectionParameters {
|
||||
fn default() -> Self {
|
||||
Self {
|
||||
connection_timeout: Duration::from_millis(5000),
|
||||
unistream_timeout: Duration::from_millis(5000),
|
||||
write_timeout: Duration::from_millis(5000),
|
||||
finalize_timeout: Duration::from_millis(5000),
|
||||
connection_timeout: Duration::from_millis(10000),
|
||||
unistream_timeout: Duration::from_millis(10000),
|
||||
write_timeout: Duration::from_millis(10000),
|
||||
finalize_timeout: Duration::from_millis(10000),
|
||||
connection_retry_count: 20,
|
||||
max_number_of_connections: 8,
|
||||
number_of_transactions_per_unistream: 1,
|
||||
percentage_of_connection_limit_to_create_new: 50,
|
||||
percentage_of_connection_limit_to_create_new: 75,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
use dashmap::DashMap;
|
||||
use log::{error, trace};
|
||||
use prometheus::{core::GenericGauge, opts, register_int_gauge};
|
||||
use prometheus::{
|
||||
core::GenericGauge, histogram_opts, opts, register_histogram, register_int_gauge, Histogram,
|
||||
};
|
||||
use quinn::Endpoint;
|
||||
use solana_lite_rpc_core::{
|
||||
stores::data_cache::DataCache,
|
||||
|
@ -39,6 +41,15 @@ lazy_static::lazy_static! {
|
|||
register_int_gauge!(opts!("literpc_connections_to_keep", "Number of connections to keep asked by tpu service")).unwrap();
|
||||
static ref NB_QUIC_TASKS: GenericGauge<prometheus::core::AtomicI64> =
|
||||
register_int_gauge!(opts!("literpc_quic_tasks", "Number of connections to keep asked by tpu service")).unwrap();
|
||||
|
||||
static ref TT_SENT_TIMER: Histogram = register_histogram!(histogram_opts!(
|
||||
"literpc_txs_send_timer",
|
||||
"Time to send transaction batch",
|
||||
))
|
||||
.unwrap();
|
||||
|
||||
static ref TRANSACTIONS_IN_HEAP: GenericGauge<prometheus::core::AtomicI64> =
|
||||
register_int_gauge!(opts!("literpc_transactions_in_priority_heap", "Number of transactions in priority heap")).unwrap();
|
||||
}
|
||||
|
||||
#[derive(Clone)]
|
||||
|
@ -101,6 +112,8 @@ impl ActiveConnection {
|
|||
}
|
||||
|
||||
priorization_heap.insert(transaction_sent_info).await;
|
||||
TRANSACTIONS_IN_HEAP.inc();
|
||||
|
||||
fill_notify.notify_one();
|
||||
// give little more priority to read the transaction sender with this wait
|
||||
let last_blockheight =
|
||||
|
@ -166,6 +179,7 @@ impl ActiveConnection {
|
|||
// wait to get notification from fill event
|
||||
break;
|
||||
};
|
||||
TRANSACTIONS_IN_HEAP.dec();
|
||||
|
||||
// check if transaction is already confirmed
|
||||
if self.data_cache.txs.is_transaction_confirmed(&tx.signature) {
|
||||
|
@ -186,8 +200,12 @@ impl ActiveConnection {
|
|||
tokio::spawn(async move {
|
||||
// permit will be used to send all the transaction and then destroyed
|
||||
let _permit = permit;
|
||||
let timer = TT_SENT_TIMER.start_timer();
|
||||
|
||||
NB_QUIC_TASKS.inc();
|
||||
|
||||
connection.send_transaction(tx.transaction).await;
|
||||
timer.observe_duration();
|
||||
NB_QUIC_TASKS.dec();
|
||||
});
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@ use crate::{
|
|||
tx_sender::TxSender,
|
||||
};
|
||||
use anyhow::bail;
|
||||
use prometheus::{histogram_opts, register_histogram, Histogram};
|
||||
use solana_lite_rpc_core::{
|
||||
solana_utils::SerializableTransaction, structures::transaction_sent_info::SentTransactionInfo,
|
||||
types::SlotStream,
|
||||
|
@ -28,6 +29,14 @@ use tokio::{
|
|||
time::Instant,
|
||||
};
|
||||
|
||||
lazy_static::lazy_static! {
|
||||
static ref PRIORITY_FEES_HISTOGRAM: Histogram = register_histogram!(histogram_opts!(
|
||||
"literpc_txs_priority_fee",
|
||||
"Priority fees of transactions sent by lite-rpc",
|
||||
))
|
||||
.unwrap();
|
||||
}
|
||||
|
||||
#[derive(Clone)]
|
||||
pub struct TransactionServiceBuilder {
|
||||
tx_sender: TxSender,
|
||||
|
@ -157,6 +166,8 @@ impl TransactionService {
|
|||
prioritization_fee
|
||||
};
|
||||
|
||||
PRIORITY_FEES_HISTOGRAM.observe(prioritization_fee as f64);
|
||||
|
||||
let max_replay = max_retries.map_or(self.max_retries, |x| x as usize);
|
||||
let transaction_info = SentTransactionInfo {
|
||||
signature: signature.to_string(),
|
||||
|
|
Loading…
Reference in New Issue