Move bench-tps instructions (#8734)

automerge
This commit is contained in:
Greg Fitzgerald 2020-03-09 16:26:03 -06:00 committed by GitHub
parent e277437bd2
commit f671be814e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -46,6 +46,8 @@
* [Monitor a Validator](running-validator/validator-monitor.md) * [Monitor a Validator](running-validator/validator-monitor.md)
* [Publish Validator Info](running-validator/validator-info.md) * [Publish Validator Info](running-validator/validator-info.md)
* [Troubleshoot](running-validator/validator-troubleshoot.md) * [Troubleshoot](running-validator/validator-troubleshoot.md)
* [Benchmark a Cluster](cluster/bench-tps.md)
* [Performance Metrics](cluster/performance-metrics.md)
* [Solana's Architecture](cluster/README.md) * [Solana's Architecture](cluster/README.md)
* [Synchronization](cluster/synchronization.md) * [Synchronization](cluster/synchronization.md)
* [Leader Rotation](cluster/leader-rotation.md) * [Leader Rotation](cluster/leader-rotation.md)
@ -55,14 +57,12 @@
* [Ledger Replication](cluster/ledger-replication.md) * [Ledger Replication](cluster/ledger-replication.md)
* [Secure Vote Signing](cluster/vote-signing.md) * [Secure Vote Signing](cluster/vote-signing.md)
* [Stake Delegation and Rewards](cluster/stake-delegation-and-rewards.md) * [Stake Delegation and Rewards](cluster/stake-delegation-and-rewards.md)
* [Performance Metrics](cluster/performance-metrics.md)
* [Anatomy of a Validator](validator/README.md) * [Anatomy of a Validator](validator/README.md)
* [TPU](validator/tpu.md) * [TPU](validator/tpu.md)
* [TVU](validator/tvu.md) * [TVU](validator/tvu.md)
* [Blockstore](validator/blockstore.md) * [Blockstore](validator/blockstore.md)
* [Gossip Service](validator/gossip.md) * [Gossip Service](validator/gossip.md)
* [The Runtime](validator/runtime.md) * [The Runtime](validator/runtime.md)
* [Build from Source](building-from-source.md)
* [Terminology](terminology.md) * [Terminology](terminology.md)
* [Implemented Design Proposals](implemented-proposals/README.md) * [Implemented Design Proposals](implemented-proposals/README.md)
* [Cluster Software Installation and Updates](implemented-proposals/installer.md) * [Cluster Software Installation and Updates](implemented-proposals/installer.md)

View File

@ -1,4 +1,4 @@
# Building from Source # Benchmark a Cluster
The Solana git repository contains all the scripts you might need to spin up your own local testnet. Depending on what you're looking to achieve, you may want to run a different variation, as the full-fledged, performance-enhanced multinode testnet is considerably more complex to set up than a Rust-only, singlenode testnode. If you are looking to develop high-level features, such as experimenting with smart contracts, save yourself some setup headaches and stick to the Rust-only singlenode demo. If you're doing performance optimization of the transaction pipeline, consider the enhanced singlenode demo. If you're doing consensus work, you'll need at least a Rust-only multinode demo. If you want to reproduce our TPS metrics, run the enhanced multinode demo. The Solana git repository contains all the scripts you might need to spin up your own local testnet. Depending on what you're looking to achieve, you may want to run a different variation, as the full-fledged, performance-enhanced multinode testnet is considerably more complex to set up than a Rust-only, singlenode testnode. If you are looking to develop high-level features, such as experimenting with smart contracts, save yourself some setup headaches and stick to the Rust-only singlenode demo. If you're doing performance optimization of the transaction pipeline, consider the enhanced singlenode demo. If you're doing consensus work, you'll need at least a Rust-only multinode demo. If you want to reproduce our TPS metrics, run the enhanced multinode demo.