Commit Graph

4279 Commits

Author SHA1 Message Date
58f4709362 Reduce log severity of entry stream errors 2019-02-16 19:10:00 -08:00
f71cd2c6f3 Status cache runs out of space in the bloom filter (#2796)
The cache is designed for 1m statuses, about 1 second worth of transactions at full capacity. Refresh the cache every 1 second worth of ticks.
2019-02-16 16:41:03 -08:00
8ec1f6ea2e Applied review feedback 2019-02-16 17:15:31 -07:00
d63c8ae1ae Add PR guidelines 2019-02-16 17:15:31 -07:00
e39094ac37 Hoist Slot Leader dependencies up to BankingStage 2019-02-16 15:36:31 -07:00
b539389741 Move all Validator dependencies from Bank to blocktree_processor 2019-02-16 15:01:26 -07:00
ac35fe9ed1 Flip the dependency; Create bank before scheduler 2019-02-16 14:16:48 -07:00
3d70afc578 Boot leader scheduler from the bank
Functional change: the leader scheduler is no longer implicitly
updated by PohRecorder via register_tick(). That's intended to
be a "feature" (crossing fingers).
2019-02-16 14:16:48 -07:00
b919b3e3b2 Bank no longer updates a leader scheduler by default 2019-02-16 14:16:48 -07:00
7a7349f2ff Don't update the leader scheduler in bank's default constructor 2019-02-16 14:16:48 -07:00
07b57735b1 Move leader scheduler test out of bank 2019-02-16 14:16:48 -07:00
e42c95a327 Bump bincode from 1.1.1 to 1.1.2
Bumps [bincode](https://github.com/TyOverby/bincode) from 1.1.1 to 1.1.2.
- [Release notes](https://github.com/TyOverby/bincode/releases)
- [Commits](https://github.com/TyOverby/bincode/compare/v1.1.1...v1.1.2)

Signed-off-by: dependabot[bot] <support@dependabot.com>
2019-02-16 13:58:37 -07:00
473af78368 Support --entry-stream argument 2019-02-16 10:40:47 -08:00
ab6c7f6ca3 /it/ti/ 2019-02-16 10:40:47 -08:00
599516473a Add top-level run.sh for easy local cluster startup 2019-02-16 10:40:47 -08:00
83ac075b22 Use full app name for better cli help text 2019-02-16 10:40:47 -08:00
3548c6c43a Add support for locally built programs 2019-02-16 10:40:47 -08:00
3bfe2e75b5 Boot new_with_leader_scheduler_config
Only used in one place. Easy enough to use the one with the shared
leader scheduler.
2019-02-16 10:55:58 -07:00
97c93629a5 Don't use the Bank's LeaderScheduler 2019-02-16 10:55:58 -07:00
643384e1ec Add LeaderScheduler constructor to Bank
By passing a config and not a Arc'ed LeaderScheduler, callers
need to use `Bank::leader_scheduler` to access the scheduler.
By using the new constructor, there should be no incentive to
reach into the bank for that object.
2019-02-16 10:55:58 -07:00
1809277e05 Encapsulate Bank accounts
That way we don't need to TODOs saying "don't forget to iterate
over checkpoints too". It should be assumed that when the bank
references its previous checkpoint all its methods would
acknowledge it.
2019-02-16 08:41:35 -07:00
7981865fd2 Boot unused confirmation-time from Bank
This broken metric is already submitted to influx. Why make it
available via RPC too? If so, why store it in the bank and not
in the RPC service?
2019-02-16 08:11:43 -07:00
4467d5eb4c Extract process_ledger from Bank
Fullnode was the only real consumer of process_ledger and it was
only there to process a Blocktree. Blocktree is a tree, and a
ledger is a sequence, so something's clearly not right here.
Drop all other dependencies on process_ledger (only one test) so
that it can be fixed up in isolation.
2019-02-16 08:07:26 -07:00
38aed0c886 Bump serde_derive from 1.0.87 to 1.0.88
Bumps [serde_derive](https://github.com/serde-rs/serde) from 1.0.87 to 1.0.88.
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.87...v1.0.88)

Signed-off-by: dependabot[bot] <support@dependabot.com>
2019-02-16 04:57:32 -08:00
02801b3e75 Bump serde from 1.0.87 to 1.0.88
Bumps [serde](https://github.com/serde-rs/serde) from 1.0.87 to 1.0.88.
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.87...v1.0.88)

Signed-off-by: dependabot[bot] <support@dependabot.com>
2019-02-16 05:02:10 -07:00
b79d361e6c Add --entry-stream support 2019-02-15 22:52:27 -08:00
9eb8b67b5c Install blockexplorer dependencies 2019-02-15 20:17:46 -08:00
132c664e18 No longer modify external userdata 2019-02-15 18:36:55 -07:00
288645aeb7 Add rewards integration test 2019-02-15 18:36:55 -07:00
55f06f5bad Make vote_program available to reward_program tests
Making `solana_vote_program` is not an option because
then vote_program's entrypoint conflicts with reward_program's
entrypoint.

This unfortunately turns the SDK into a dumping ground for all
things shared between vote_program and other programs. Better
would be to create a solana-vote-api crate similar to the
solana-rewards-api crate.
2019-02-15 18:36:55 -07:00
a2cb18bfe9 Only require voting account to be signed 2019-02-15 18:36:55 -07:00
d35b3754a2 Reorg
Now clients can use all the libraries to create transactions
and disect account data without needing to be constrained about
what can be compiled into a shared object or BPF.

Likewise, program development can move forward without being
concerned with bloating the shared object.
2019-02-15 18:36:55 -07:00
7f3aca15dd Add a library for creating Rewards transactions
And move out of the SDK
2019-02-15 18:36:55 -07:00
2c5cbaff25 Add unit-test for Rewards program 2019-02-15 18:36:55 -07:00
134cd7ab04 Add Rewards program 2019-02-15 18:36:55 -07:00
c74b8b6df3 Add a design for leader schedule rotation and genesis. (#2714)
Leader schedule rotation.
2019-02-15 16:34:34 -08:00
573116e259 Remove count_last_ids API 2019-02-15 11:05:41 -08:00
71ab030ea4 Fiddle with timeouts to make CI happy 2019-02-14 18:40:31 -08:00
c4125b80ec Reduce max_tick_height to speed up CI 2019-02-14 18:40:31 -08:00
626a381ddc Collect and re-forward packets received while TpuForwarder is shutting down 2019-02-14 18:40:31 -08:00
5333bda234 test_3_partitions is unstable, ignore 2019-02-14 17:30:42 -08:00
cceeb8e52d On leader rotation forward any unprocessed transaction packets to the new leader 2019-02-14 14:49:48 -08:00
94a0d10499 Avoid overrunning slot0 2019-02-14 14:49:48 -08:00
3f6aba23dd Add custom BlocktreeConfig for bad tests that break with the default 2019-02-14 14:49:48 -08:00
cd9dac4c7e Use a reasonable max_tick_height 2019-02-14 14:49:48 -08:00
f478894729 Revert "Set DEFAULT_TICKS_PER_SLOT = 32 to stabilize integration tests"
This reverts commit 2d2572d2cb.
2019-02-14 14:49:48 -08:00
97790480c9 Increase poll_for_signature retry timeout 2019-02-14 14:49:48 -08:00
9643c39bf6 Fix slot in block event 2019-02-14 14:25:54 -08:00
0a08d40237 fix repair service to support multinode tests that depend on repairs 2019-02-14 13:37:55 -08:00
d029997aef add parent slot to broadcast 2019-02-14 13:37:55 -08:00