solana/README.md

389 lines
13 KiB
Markdown
Raw Normal View History

2018-03-27 15:16:27 -07:00
[![Solana crate](https://img.shields.io/crates/v/solana.svg)](https://crates.io/crates/solana)
[![Solana documentation](https://docs.rs/solana/badge.svg)](https://docs.rs/solana)
[![Build status](https://badge.buildkite.com/d4c4d7da9154e3a8fb7199325f430ccdb05be5fc1e92777e51.svg?branch=master)](https://solana-ci-gate.herokuapp.com/buildkite_public_log?https://buildkite.com/solana-labs/solana/builds/latest/master)
2018-03-27 15:16:27 -07:00
[![codecov](https://codecov.io/gh/solana-labs/solana/branch/master/graph/badge.svg)](https://codecov.io/gh/solana-labs/solana)
2018-02-14 14:25:49 -08:00
Blockchain, Rebuilt for Scale
===
2018-02-15 12:59:33 -08:00
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.
2018-04-18 20:17:37 -07:00
Introduction
===
2018-08-18 16:53:08 -07:00
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! 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 in route towards that theoretical limit of 710,000 transactions per second.
2018-04-18 20:17:37 -07:00
2018-06-01 09:40:06 -07:00
Testnet Demos
===
2018-02-19 08:19:26 -08:00
2018-06-01 09:40:06 -07:00
The Solana repo 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.
For all four variations, you'd need the latest Rust toolchain and the Solana
source code:
First, install Rust's package manager Cargo.
2018-03-05 15:05:16 -08:00
```bash
$ curl https://sh.rustup.rs -sSf | sh
$ source $HOME/.cargo/env
```
2018-04-20 14:02:10 -07:00
Now checkout the code from github:
```bash
$ git clone https://github.com/solana-labs/solana.git
2018-04-20 14:02:10 -07:00
$ cd solana
```
2018-06-01 09:40:06 -07:00
The demo code is sometimes broken between releases as we add new low-level
features, so if this is your first time running the demo, you'll improve
your odds of success if you check out the
[latest release](https://github.com/solana-labs/solana/releases)
before proceeding:
```bash
$ git checkout v0.7.2
2018-06-01 09:40:06 -07:00
```
Configuration Setup
2018-06-01 09:40:06 -07:00
---
The network is initialized with a genesis ledger and leader/validator configuration files.
These files can be generated by running the following script.
2018-03-05 15:05:16 -08:00
```bash
$ ./multinode-demo/setup.sh
```
Drone
---
In order for the leader, client and validators to work, we'll need to
spin up a drone to give out some test tokens. The drone delivers Milton
Friedman-style "air drops" (free tokens to requesting clients) to be used in
test transactions.
2018-05-31 14:45:03 -07:00
Start the drone on the leader node with:
2018-03-05 15:05:16 -08:00
```bash
$ ./multinode-demo/drone.sh
2018-03-05 15:05:16 -08:00
```
Singlenode Testnet
---
Before you start a fullnode, make sure you know the IP address of the machine you
want to be the leader for the demo, and make sure that udp ports 8000-10000 are
open on all the machines you want to test with.
Now start the server in a separate shell:
2018-06-01 12:23:11 -07:00
```bash
$ ./multinode-demo/leader.sh
2018-06-01 12:23:11 -07:00
```
Wait a few seconds for the server to initialize. It will print "leader ready..." when it's ready to
receive transactions. The leader will request some tokens from the drone if it doesn't have any.
The drone does not need to be running for subsequent leader starts.
2018-06-01 09:40:06 -07:00
Multinode Testnet
---
To run a multinode testnet, after starting a leader node, spin up some validator nodes in
separate shells:
2018-03-05 15:05:16 -08:00
```bash
2018-06-24 10:10:55 -07:00
$ ./multinode-demo/validator.sh ubuntu@10.0.1.51:~/solana 10.0.1.51
2018-03-05 15:05:16 -08:00
```
To run a performance-enhanced leader or validator (on Linux),
2018-06-24 10:10:55 -07:00
[CUDA 9.2](https://developer.nvidia.com/cuda-downloads) must be installed on
your system:
2018-06-01 12:23:11 -07:00
```bash
2018-06-24 10:10:55 -07:00
$ ./fetch-perf-libs.sh
$ SOLANA_CUDA=1 ./multinode-demo/leader.sh
$ SOLANA_CUDA=1 ./multinode-demo/validator.sh ubuntu@10.0.1.51:~/solana 10.0.1.51
2018-06-01 12:23:11 -07:00
```
2018-06-01 09:40:06 -07:00
2018-06-01 09:40:06 -07:00
Testnet Client Demo
---
2018-03-05 15:05:16 -08:00
Now that your singlenode or multinode testnet is up and running let's send it some transactions! Note that we pass in
the expected number of nodes in the network. If running singlenode, pass 1; if multinode, pass the number
of validators you started.
In a separate shell start the client:
2018-03-05 15:05:16 -08:00
```bash
$ ./multinode-demo/client.sh ubuntu@10.0.1.51:~/solana 1
```
2018-06-01 09:40:06 -07:00
What just happened? The client demo spins up several threads to send 500,000 transactions
to the testnet as quickly as it can. The client then pings the testnet periodically to see
how many transactions it processed in that time. Take note that the demo intentionally
floods the network with UDP packets, such that the network will almost certainly drop a
bunch of them. This ensures the testnet has an opportunity to reach 710k TPS. The client
demo completes after it has convinced itself the testnet won't process any additional
transactions. You should see several TPS measurements printed to the screen. In the
multinode variation, you'll see TPS measurements for each validator node as well.
Public Testnet
--------------
2018-08-22 01:34:43 -07:00
In this example the client connects to our public testnet. To run validators on the testnet you would need to open udp ports `8000-10000`.
```bash
$ ./multinode-demo/client.sh testnet.solana.com 1 #The minumum number of nodes to discover on the network
```
You can observe the effects of your client's transactions on our [dashboard](https://metrics.solana.com:3000/d/testnet/testnet-hud?orgId=2&from=now-30m&to=now&refresh=5s&var-testnet=testnet)
2018-06-19 13:09:09 -07:00
Linux Snap
---
2018-06-23 15:29:22 -07:00
A Linux [Snap](https://snapcraft.io/) is available, which can be used to
2018-06-19 13:09:09 -07:00
easily get Solana running on supported Linux systems without building anything
from source. The `edge` Snap channel is updated daily with the latest
development from the `master` branch. To install:
2018-06-19 13:09:09 -07:00
```bash
$ sudo snap install solana --edge --devmode
```
2018-06-19 13:09:09 -07:00
(`--devmode` flag is required only for `solana.fullnode-cuda`)
Once installed the usual Solana programs will be available as `solona.*` instead
of `solana-*`. For example, `solana.fullnode` instead of `solana-fullnode`.
2018-08-09 16:10:53 -07:00
Update to the latest version at any time with:
2018-06-23 15:29:22 -07:00
```bash
$ snap info solana
$ sudo snap refresh solana --devmode
```
2018-06-24 10:10:55 -07:00
### Daemon support
The snap supports running a leader, validator or leader+drone node as a system
daemon.
2018-07-31 13:06:01 -07:00
Run `sudo snap get solana` to view the current daemon configuration. To view
daemon logs:
1. Run `sudo snap logs -n=all solana` to view the daemon initialization log
2. Runtime logging can be found under `/var/snap/solana/current/leader/`,
`/var/snap/solana/current/validator/`, or `/var/snap/solana/current/drone/` depending
on which `mode=` was selected. Within each log directory the file `current`
contains the latest log, and the files `*.s` (if present) contain older rotated
logs.
2018-06-24 10:10:55 -07:00
Disable the daemon at any time by running:
2018-06-24 10:10:55 -07:00
```bash
$ sudo snap set solana mode=
```
Runtime configuration files for the daemon can be found in
`/var/snap/solana/current/config`.
#### Leader daemon
2018-06-24 10:10:55 -07:00
```bash
$ sudo snap set solana mode=leader
2018-06-24 10:10:55 -07:00
```
If CUDA is available:
2018-06-24 10:10:55 -07:00
```bash
$ sudo snap set solana mode=leader enable-cuda=1
```
`rsync` must be configured and running on the leader.
1. Ensure rsync is installed with `sudo apt-get -y install rsync`
2. Edit `/etc/rsyncd.conf` to include the following
```
[config]
path = /var/snap/solana/current/config
hosts allow = *
read only = true
```
3. Run `sudo systemctl enable rsync; sudo systemctl start rsync`
4. Test by running `rsync -Pzravv rsync://<ip-address-of-leader>/config
2018-06-28 16:08:59 -07:00
solana-config` from another machine. **If the leader is running on a cloud
2018-06-24 10:10:55 -07:00
provider it may be necessary to configure the Firewall rules to permit ingress
2018-06-28 16:08:59 -07:00
to port tcp:873, tcp:9900 and the port range udp:8000-udp:10000**
2018-06-24 10:10:55 -07:00
To run both the Leader and Drone:
2018-06-24 10:10:55 -07:00
```bash
$ sudo snap set solana mode=leader+drone
2018-06-28 16:08:59 -07:00
2018-06-24 10:10:55 -07:00
```
#### Validator daemon
2018-06-24 10:10:55 -07:00
```bash
$ sudo snap set solana mode=validator
2018-06-28 16:08:59 -07:00
2018-06-24 10:10:55 -07:00
```
If CUDA is available:
2018-06-24 10:10:55 -07:00
```bash
$ sudo snap set solana mode=validator enable-cuda=1
2018-06-24 10:10:55 -07:00
```
By default the validator will connect to **testnet.solana.com**, override
the leader IP address by running:
2018-06-24 10:10:55 -07:00
```bash
$ sudo snap set solana mode=validator leader-address=127.0.0.1 #<-- change IP address
```
2018-06-24 10:10:55 -07:00
It's assumed that the leader will be running `rsync` configured as described in
the previous **Leader daemon** section.
Developing
===
Building
---
Install rustc, cargo and rustfmt:
```bash
$ curl https://sh.rustup.rs -sSf | sh
$ source $HOME/.cargo/env
$ rustup component add rustfmt-preview
```
2018-05-30 19:49:55 -07:00
If your rustc version is lower than 1.26.1, please update it:
```bash
$ rustup update
```
2018-08-22 01:34:43 -07:00
On Linux systems you may need to install libssl-dev, pkg-config, zlib1g-dev, etc. On Ubuntu:
2018-07-02 10:22:37 -07:00
```bash
2018-08-22 01:34:43 -07:00
$ sudo apt-get install libssl-dev pkg-config zlib1g-dev
2018-07-02 10:22:37 -07:00
```
Download the source code:
```bash
2018-03-27 15:16:27 -07:00
$ git clone https://github.com/solana-labs/solana.git
$ cd solana
```
Testing
---
Run the test suite:
```bash
$ cargo test
```
2018-05-28 16:46:47 -07:00
To emulate all the tests that will run on a Pull Request, run:
2018-05-28 16:46:47 -07:00
```bash
$ ./ci/run-local.sh
```
2018-05-08 13:25:59 -07:00
Debugging
---
There are some useful debug messages in the code, you can enable them on a per-module and per-level
basis. Before running a leader or validator set the normal RUST\_LOG environment variable.
For example, to enable info everywhere and debug only in the solana::banking_stage module:
2018-05-08 13:25:59 -07:00
```bash
$ export RUST_LOG=info,solana::banking_stage=debug
2018-05-08 13:25:59 -07:00
```
Generally we are using debug for infrequent debug messages, trace for potentially frequent
messages and info for performance-related logging.
2018-06-07 08:22:38 -07:00
You can also attach to a running process with GDB. The leader's process is named
_solana-fullnode_:
```bash
2018-06-07 08:22:38 -07:00
$ sudo gdb
attach <PID>
set logging on
thread apply all bt
```
This will dump all the threads stack traces into gdb.txt
Benchmarking
---
First install the nightly build of rustc. `cargo bench` requires unstable features:
```bash
$ rustup install nightly
```
Run the benchmarks:
```bash
$ cargo +nightly bench --features="unstable"
```
2018-08-16 20:48:11 -07:00
Release Process
---
The release process for this project is described [here](rfcs/rfc-005-branches-tags-and-channels.md).
Code coverage
---
To generate code coverage statistics, install cargo-cov. Note: the tool currently only works
in Rust nightly.
```bash
$ cargo +nightly install cargo-cov
```
Run cargo-cov and generate a report:
```bash
$ cargo +nightly cov test
$ cargo +nightly cov report --open
```
The coverage report will be written to `./target/cov/report/index.html`
2018-05-28 16:46:47 -07:00
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!