2018-12-12 13:27:21 -06:00
|
|
|
mod bench;
|
|
|
|
mod cli;
|
2018-11-16 08:45:59 -08:00
|
|
|
|
2019-05-01 13:21:45 -07:00
|
|
|
use crate::bench::{do_bench_tps, generate_and_fund_keypairs, Config, NUM_LAMPORTS_PER_ACCOUNT};
|
2019-04-19 15:04:36 -06:00
|
|
|
use solana::cluster_info::FULLNODE_PORT_RANGE;
|
|
|
|
use solana::contact_info::ContactInfo;
|
|
|
|
use solana::gossip_service::discover_nodes;
|
|
|
|
use solana_client::thin_client::create_client;
|
|
|
|
use std::process::exit;
|
2018-03-04 01:21:40 -07:00
|
|
|
|
2018-02-28 10:07:54 -07:00
|
|
|
fn main() {
|
2018-12-14 12:36:50 -08:00
|
|
|
solana_logger::setup();
|
2018-11-16 08:45:59 -08:00
|
|
|
solana_metrics::set_panic_hook("bench-tps");
|
2018-03-03 21:15:42 -07:00
|
|
|
|
2018-12-12 13:27:21 -06:00
|
|
|
let matches = cli::build_args().get_matches();
|
2019-04-19 15:04:36 -06:00
|
|
|
let cli_config = cli::extract_args(&matches);
|
2018-12-12 13:27:21 -06:00
|
|
|
|
2019-04-19 15:04:36 -06:00
|
|
|
let cli::Config {
|
|
|
|
network_addr,
|
|
|
|
drone_addr,
|
|
|
|
id,
|
|
|
|
threads,
|
|
|
|
num_nodes,
|
|
|
|
duration,
|
|
|
|
tx_count,
|
|
|
|
thread_batch_sleep_ms,
|
|
|
|
sustained,
|
|
|
|
} = cli_config;
|
2018-12-12 13:27:21 -06:00
|
|
|
|
2019-04-19 15:04:36 -06:00
|
|
|
println!("Connecting to the cluster");
|
|
|
|
let nodes = discover_nodes(&network_addr, num_nodes).unwrap_or_else(|err| {
|
|
|
|
eprintln!("Failed to discover {} nodes: {:?}", num_nodes, err);
|
|
|
|
exit(1);
|
|
|
|
});
|
|
|
|
if nodes.len() < num_nodes {
|
|
|
|
eprintln!(
|
|
|
|
"Error: Insufficient nodes discovered. Expecting {} or more",
|
|
|
|
num_nodes
|
|
|
|
);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
let clients: Vec<_> = nodes
|
|
|
|
.iter()
|
|
|
|
.filter_map(|node| {
|
|
|
|
let cluster_entrypoint = node.clone();
|
|
|
|
let cluster_addrs = cluster_entrypoint.client_facing_addr();
|
|
|
|
if ContactInfo::is_valid_address(&cluster_addrs.0)
|
|
|
|
&& ContactInfo::is_valid_address(&cluster_addrs.1)
|
|
|
|
{
|
|
|
|
let client = create_client(cluster_addrs, FULLNODE_PORT_RANGE);
|
|
|
|
Some(client)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
|
2019-05-01 13:21:45 -07:00
|
|
|
let (keypairs, keypair_balance) = generate_and_fund_keypairs(
|
|
|
|
&clients[0],
|
|
|
|
Some(drone_addr),
|
|
|
|
&id,
|
|
|
|
tx_count,
|
|
|
|
NUM_LAMPORTS_PER_ACCOUNT,
|
|
|
|
);
|
2019-04-19 15:04:36 -06:00
|
|
|
|
|
|
|
let config = Config {
|
|
|
|
id,
|
|
|
|
threads,
|
|
|
|
thread_batch_sleep_ms,
|
|
|
|
duration,
|
|
|
|
tx_count,
|
|
|
|
sustained,
|
|
|
|
};
|
|
|
|
|
2019-05-01 13:21:45 -07:00
|
|
|
do_bench_tps(clients, config, keypairs, keypair_balance);
|
2018-09-06 14:20:01 -07:00
|
|
|
}
|