From f671be814ea0371c69c29c43243d0eb0e439b0ab Mon Sep 17 00:00:00 2001 From: Greg Fitzgerald Date: Mon, 9 Mar 2020 16:26:03 -0600 Subject: [PATCH] Move bench-tps instructions (#8734) automerge --- docs/src/SUMMARY.md | 4 ++-- docs/src/{building-from-source.md => cluster/bench-tps.md} | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename docs/src/{building-from-source.md => cluster/bench-tps.md} (99%) diff --git a/docs/src/SUMMARY.md b/docs/src/SUMMARY.md index e8c3f72c7..0c1e32a73 100644 --- a/docs/src/SUMMARY.md +++ b/docs/src/SUMMARY.md @@ -46,6 +46,8 @@ * [Monitor a Validator](running-validator/validator-monitor.md) * [Publish Validator Info](running-validator/validator-info.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) * [Synchronization](cluster/synchronization.md) * [Leader Rotation](cluster/leader-rotation.md) @@ -55,14 +57,12 @@ * [Ledger Replication](cluster/ledger-replication.md) * [Secure Vote Signing](cluster/vote-signing.md) * [Stake Delegation and Rewards](cluster/stake-delegation-and-rewards.md) - * [Performance Metrics](cluster/performance-metrics.md) * [Anatomy of a Validator](validator/README.md) * [TPU](validator/tpu.md) * [TVU](validator/tvu.md) * [Blockstore](validator/blockstore.md) * [Gossip Service](validator/gossip.md) * [The Runtime](validator/runtime.md) -* [Build from Source](building-from-source.md) * [Terminology](terminology.md) * [Implemented Design Proposals](implemented-proposals/README.md) * [Cluster Software Installation and Updates](implemented-proposals/installer.md) diff --git a/docs/src/building-from-source.md b/docs/src/cluster/bench-tps.md similarity index 99% rename from docs/src/building-from-source.md rename to docs/src/cluster/bench-tps.md index 2250756bb..07be36d2a 100644 --- a/docs/src/building-from-source.md +++ b/docs/src/cluster/bench-tps.md @@ -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.