This repository has been archived by the owner on Nov 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Adjust requests costs for light client #9925
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
eeb48a7
PIP Table Cost relative to average peers instead of max peers
ngotchac 0bffba0
Add tracing in PIP new_cost_table
ngotchac b6e7edb
Update stat peer_count
ngotchac 3e359ce
Use number of leeching peers for Light serve costs
ngotchac 7d626c5
Fix test::light_params_load_share_depends_on_max_peers (wrong type)
ngotchac 3de9c83
Remove (now) useless test
ngotchac 3fef819
Remove `load_share` from LightParams.Config
ngotchac bd9686c
Add LEECHER_COUNT_FACTOR
ngotchac 03b039c
PR Grumble: u64 to u32 for f64 casting
ngotchac 4969f2b
Prevent u32 overflow for avg_peer_count
ngotchac 742c91b
Add tests for LightSync::Statistics
ngotchac File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,9 +22,10 @@ use ethcore::client::{EachBlockWith, TestBlockChainClient}; | |
use ethcore::encoded; | ||
use ethcore::ids::BlockId; | ||
use ethereum_types::{H256, U256, Address}; | ||
use net::{LightProtocol, Params, packet, Peer}; | ||
use net::{LightProtocol, Params, packet, Peer, Statistics}; | ||
use net::context::IoContext; | ||
use net::status::{Capabilities, Status}; | ||
use net::load_timer::MOVING_SAMPLE_SIZE; | ||
use network::{PeerId, NodeId}; | ||
use provider::Provider; | ||
use request; | ||
|
@@ -780,3 +781,34 @@ fn get_transaction_index() { | |
let expected = Expect::Respond(packet::RESPONSE, response); | ||
proto.handle_packet(&expected, 1, packet::REQUEST, &request_body); | ||
} | ||
|
||
#[test] | ||
fn sync_statistics() { | ||
let mut stats = Statistics::new(); | ||
|
||
// Empty set should return 1.0 | ||
assert_eq!(stats.avg_peer_count(), 1.0); | ||
|
||
// Average < 1.0 should return 1.0 | ||
stats.add_peer_count(0); | ||
assert_eq!(stats.avg_peer_count(), 1.0); | ||
|
||
stats = Statistics::new(); | ||
|
||
const N: f64 = 50.0; | ||
|
||
for i in 1..(N as usize + 1) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nitpick: Rust have inclusive range, the syntax is: |
||
stats.add_peer_count(i); | ||
} | ||
|
||
// Compute the average for the sum 1..N | ||
assert_eq!(stats.avg_peer_count(), N * (N + 1.0) / 2.0 / N); | ||
|
||
for _ in 1..(MOVING_SAMPLE_SIZE + 1) { | ||
stats.add_peer_count(40); | ||
} | ||
|
||
// Test that it returns the average of the last | ||
// `MOVING_SAMPLE_SIZE` values | ||
assert_eq!(stats.avg_peer_count(), 40.0); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could be simplified by using a fixed size array/vector (initialized wit 1s) and
index: usize
that wraps after the endThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point, but the current implementation is more accurate in case when the number of samples is less than
MOVING_SAMPLE_SIZE
(it would be full only after an hour (256 * 15 / 60)).There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fair enough, although that could be simple solved with a flag (i.e.
is_fully_filled ? 0..len : 0..index
).