Go to file
Michael Vines dad1511484 test_bank_squash: validate transaction_count() before/after squashing 2019-02-27 23:21:49 -08:00
.buildkite Whitelist the metrics-solana-com buildkite agent from docker container cleanup 2019-02-07 08:33:53 -08:00
.github Make template headers smaller 2018-10-25 11:51:37 -06:00
bench-streamer Link dangling program cuda features to the src/ crate 2019-02-01 12:42:46 -08:00
bench-tps Make gossip selection stake based (#2848) 2019-02-20 17:08:56 -08:00
benches Refactor account serialize in appendvec 2019-02-27 19:57:50 -08:00
book Add slot 3 back to ASCII art (#2979) 2019-02-27 14:27:58 -07:00
ci Fix indent 2019-02-27 11:11:24 -08:00
drone Standardize on 'use log::*' for easy access to all log level macros 2019-02-27 21:16:23 -08:00
fullnode Fix review comments 2019-02-27 08:22:52 -08:00
fullnode-config Bump dirs from 1.0.4 to 1.0.5 2019-02-26 20:04:36 -07:00
genesis Add scheduler config to genesis 2019-02-21 17:29:55 -08:00
keygen Bump dirs from 1.0.4 to 1.0.5 2019-02-26 20:04:36 -07:00
ledger-tool Centralize unwrap() within create_new_tmp_ledger! 2019-02-26 22:08:17 -08:00
logger v0.12.0 2018-12-19 17:03:28 -08:00
metrics Standardize on 'use log::*' for easy access to all log level macros 2019-02-27 21:16:23 -08:00
multinode-demo Change benchmark path to target/ or OUT_DIR 2019-02-27 08:22:52 -08:00
net Plumb blockstreamer name through testnet scripts 2019-02-21 17:24:29 -07:00
netutil Standardize on 'use log::*' for easy access to all log level macros 2019-02-27 21:16:23 -08:00
programs Standardize on 'use log::*' for easy access to all log level macros 2019-02-27 21:16:23 -08:00
replicator Bump serde_json from 1.0.37 to 1.0.38 2019-02-01 10:06:21 -07:00
runtime test_bank_squash: validate transaction_count() before/after squashing 2019-02-27 23:21:49 -08:00
scripts Add optional deploy of custom programs (#2817) 2019-02-18 11:43:36 -07:00
sdk Add lockouts to vote program (#2944) 2019-02-26 22:19:31 -07:00
snap Build/install native programs within cargo-install-all.sh 2018-12-19 11:53:08 -08:00
src Remove incorrect file description 2019-02-27 22:36:18 -08:00
tests Standardize on 'use log::*' for easy access to all log level macros 2019-02-27 21:16:23 -08:00
upload-perf Use default if previous values do not exist 2019-02-27 08:22:52 -08:00
vote-signer Bump serde from 1.0.87 to 1.0.88 2019-02-16 05:02:10 -07:00
wallet Remove unnecessary fetching of a new last_id 2019-02-27 22:58:59 -08:00
.clippy.toml
.codecov.yml Adjust settings 2018-12-20 12:32:25 -08:00
.gitignore ignore ledger-tool/target (#2624) 2019-01-31 16:09:56 -08:00
CONTRIBUTING.md Applied review feedback 2019-02-16 17:15:31 -07:00
Cargo.lock Include solana-logger for use by tests 2019-02-27 21:16:23 -08:00
Cargo.toml Program tests now check signature status (#2965) 2019-02-26 17:09:57 -08:00
LICENSE
README.md Add top-level run.sh for easy local cluster startup 2019-02-16 10:40:47 -08:00
RELEASE.md Document updating Cargo.lock during a version bump 2018-12-20 09:20:00 -08:00
build-perf-libs.sh ci/test-stable-perf.sh now runs on macOS 2018-12-20 17:23:22 -08:00
build.rs ci/test-stable-perf.sh now runs on macOS 2018-12-20 17:23:22 -08:00
fetch-perf-libs.sh Add check for missing signature with fee'ed transaction 2018-11-15 16:23:13 -08:00
run.sh Rename EntryStream to Blockstream 2019-02-21 17:24:29 -07:00

README.md

Solana crate Solana documentation Build status codecov

Blockchain Rebuilt for Scale

Solana™ is a new blockchain architecture built from the ground up for scale. The architecture supports up to 710 thousand transactions per second on a gigabit network.

Disclaimer

All claims, content, designs, algorithms, estimates, roadmaps, specifications, and performance measurements described in this project are done with the author's best effort. It is up to the reader to check and validate their accuracy and truthfulness. Furthermore nothing in this project constitutes a solicitation for investment.

Introduction

It's possible for a centralized database to process 710,000 transactions per second on a standard gigabit network if the transactions are, on average, no more than 176 bytes. A centralized database can also replicate itself and maintain high availability without significantly compromising that transaction rate using the distributed system technique known as Optimistic Concurrency Control [H.T.Kung, J.T.Robinson (1981)]. At Solana, we're demonstrating that these same theoretical limits apply just as well to blockchain on an adversarial network. The key ingredient? Finding a way to share time when nodes can't trust one-another. Once nodes can trust time, suddenly ~40 years of distributed systems research becomes applicable to blockchain!

Perhaps the most striking difference between algorithms obtained by our method and ones based upon timeout is that using timeout produces a traditional distributed algorithm in which the processes operate asynchronously, while our method produces a globally synchronous one in which every process does the same thing at (approximately) the same time. Our method seems to contradict the whole purpose of distributed processing, which is to permit different processes to operate independently and perform different functions. However, if a distributed system is really a single system, then the processes must be synchronized in some way. Conceptually, the easiest way to synchronize processes is to get them all to do the same thing at the same time. Therefore, our method is used to implement a kernel that performs the necessary synchronization--for example, making sure that two different processes do not try to modify a file at the same time. Processes might spend only a small fraction of their time executing the synchronizing kernel; the rest of the time, they can operate independently--e.g., accessing different files. This is an approach we have advocated even when fault-tolerance is not required. The method's basic simplicity makes it easier to understand the precise properties of a system, which is crucial if one is to know just how fault-tolerant the system is. [L.Lamport (1984)]

Furthermore, and much to our surprise, it can be implemented using a mechanism that has existed in Bitcoin since day one. The Bitcoin feature is called nLocktime and it can be used to postdate transactions using block height instead of a timestamp. As a Bitcoin client, you'd use block height instead of a timestamp if you don't trust the network. Block height turns out to be an instance of what's being called a Verifiable Delay Function in cryptography circles. It's a cryptographically secure way to say time has passed. In Solana, we use a far more granular verifiable delay function, a SHA 256 hash chain, to checkpoint the ledger and coordinate consensus. With it, we implement Optimistic Concurrency Control and are now well en route towards that theoretical limit of 710,000 transactions per second.

Architecture

Before you jump into the code, review the online book Solana: Blockchain Rebuilt for Scale.

(The latest development version of the online book is also available here.)

Developing

Building

Install rustc, cargo and rustfmt:

$ curl https://sh.rustup.rs -sSf | sh
$ source $HOME/.cargo/env
$ rustup component add rustfmt-preview

If your rustc version is lower than 1.31.0, please update it:

$ rustup update

On Linux systems you may need to install libssl-dev, pkg-config, zlib1g-dev, etc. On Ubuntu:

$ sudo apt-get install libssl-dev pkg-config zlib1g-dev llvm clang

Download the source code:

$ git clone https://github.com/solana-labs/solana.git
$ cd solana

Build

$ cargo build --all

Then to run a minimal local cluster

$ ./run.sh

Testing

Run the test suite:

$ cargo test --all

To emulate all the tests that will run on a Pull Request, run:

$ ./ci/run-local.sh

Local Testnet

Start your own testnet locally, instructions are in the book Solana: Blockchain Rebuild for Scale: Getting Started.

Remote Testnets

We maintain several testnets:

  • testnet - public stable testnet accessible via testnet.solana.com, with an https proxy for web apps at api.testnet.solana.com. Runs 24/7
  • testnet-beta - public beta channel testnet accessible via beta.testnet.solana.com. Runs 24/7
  • testnet-edge - public edge channel testnet accessible via edge.testnet.solana.com. Runs 24/7
  • testnet-perf - permissioned stable testnet running a 24/7 soak test
  • testnet-beta-perf - permissioned beta channel testnet running a multi-hour soak test weekday mornings
  • testnet-edge-perf - permissioned edge channel testnet running a multi-hour soak test weekday mornings

Deploy process

They are deployed with the ci/testnet-manager.sh script through a list of scheduled buildkite jobs. Each testnet can be manually manipulated from buildkite as well. The -perf testnets use a release tarball while the non-perf builds use the snap build (we've observed that the snap build runs slower than a tarball but this has yet to be root caused).

How do I reset the testnet?

Manually trigger the testnet-management pipeline and when prompted select the desired testnet

How can I scale the tx generation rate?

Increase the TX rate by increasing the number of cores on the client machine which is running bench-tps or run multiple clients. Decrease by lowering cores or using the rayon env variable RAYON_NUM_THREADS=<xx>

How can I test a change on the testnet?

Currently, a merged PR is the only way to test a change on the testnet. But you can run your own testnet using the scripts in the net/ directory.

Adjusting the number of clients or validators on the testnet

Edit ci/testnet-manager.sh

Benchmarking

First install the nightly build of rustc. cargo bench requires unstable features:

$ rustup install nightly

Run the benchmarks:

$ cargo +nightly bench --features="unstable"

Release Process

The release process for this project is described here.

Code coverage

To generate code coverage statistics:

$ scripts/coverage.sh
$ open target/cov/lcov-local/index.html

Why coverage? While most see coverage as a code quality metric, we see it primarily as a developer productivity metric. When a developer makes a change to the codebase, presumably it's a solution to some problem. Our unit-test suite is how we encode the set of problems the codebase solves. Running the test suite should indicate that your change didn't infringe on anyone else's solutions. Adding a test protects your solution from future changes. Say you don't understand why a line of code exists, try deleting it and running the unit-tests. The nearest test failure should tell you what problem was solved by that code. If no test fails, go ahead and submit a Pull Request that asks, "what problem is solved by this code?" On the other hand, if a test does fail and you can think of a better way to solve the same problem, a Pull Request with your solution would most certainly be welcome! Likewise, if rewriting a test can better communicate what code it's protecting, please send us that patch!