Process async BankClient transactions in batches (#3738)

* Process async transactions in batches

This aims to process transactions at least as fast as LocalCluster

* Add benchmark
This commit is contained in:
Greg Fitzgerald
2019-04-19 07:29:07 -06:00
committed by GitHub
parent 512bfc93cb
commit 5fb8baed04
2 changed files with 67 additions and 27 deletions

View File

@ -3,20 +3,19 @@
extern crate test;
use solana_runtime::bank::*;
use solana_runtime::bank_client::BankClient;
use solana_sdk::client::AsyncClient;
use solana_sdk::genesis_block::GenesisBlock;
use solana_sdk::hash::hash;
use solana_sdk::signature::{Keypair, KeypairUtil};
use solana_sdk::system_transaction;
use solana_sdk::timing::{DEFAULT_TICKS_PER_SLOT, MAX_RECENT_BLOCKHASHES};
use solana_sdk::transaction::Transaction;
use test::Bencher;
#[bench]
fn bench_process_transaction(bencher: &mut Bencher) {
let (genesis_block, mint_keypair) = GenesisBlock::new(100_000_000);
let bank = Bank::new(&genesis_block);
// Create transactions between unrelated parties.
let transactions: Vec<_> = (0..4096)
// Create transactions between unrelated parties.
pub fn create_sample_transactions(bank: &Bank, mint_keypair: &Keypair) -> Vec<Transaction> {
(0..4096)
.into_iter()
.map(|_| {
// Seed the 'from' account.
@ -32,22 +31,22 @@ fn bench_process_transaction(bencher: &mut Bencher) {
// Seed the 'to' account and a cell for its signature.
let rando1 = Keypair::new();
let tx = system_transaction::transfer(
&rando0,
&rando1.pubkey(),
1,
bank.last_blockhash(),
0,
);
assert_eq!(bank.process_transaction(&tx), Ok(()));
// Finally, return the transaction to the benchmark.
tx
system_transaction::transfer(&rando0, &rando1.pubkey(), 1, bank.last_blockhash(), 0)
})
.collect();
.collect()
}
#[bench]
fn bench_process_transaction(bencher: &mut Bencher) {
let (genesis_block, mint_keypair) = GenesisBlock::new(100_000_000);
let bank = Bank::new(&genesis_block);
let transactions = create_sample_transactions(&bank, &mint_keypair);
// Run once to create all the 'to' accounts.
let results = bank.process_transactions(&transactions);
assert!(results.iter().all(Result::is_ok));
let mut id = bank.last_blockhash();
for _ in 0..(MAX_RECENT_BLOCKHASHES * DEFAULT_TICKS_PER_SLOT as usize) {
bank.register_tick(&id);
id = hash(&id.as_ref())
@ -60,3 +59,18 @@ fn bench_process_transaction(bencher: &mut Bencher) {
assert!(results.iter().all(Result::is_ok));
})
}
#[bench]
fn bench_bank_client(bencher: &mut Bencher) {
let (genesis_block, mint_keypair) = GenesisBlock::new(100_000_000);
let bank = Bank::new(&genesis_block);
let transactions = create_sample_transactions(&bank, &mint_keypair);
bencher.iter(|| {
let bank = Bank::new(&genesis_block);
let bank_client = BankClient::new(bank);
for transaction in transactions.clone() {
bank_client.async_send_transaction(transaction).unwrap();
}
})
}