aboutsummaryrefslogtreecommitdiffstats
path: root/eth
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2015-06-19 21:46:16 +0800
committerPéter Szilágyi <peterke@gmail.com>2015-06-19 21:46:16 +0800
commit8c4c7ea19207bf654d545273517b1319e1fc2269 (patch)
treeec30fa3000e4a1d32c57bc95e0019e5accbb4183 /eth
parentd5871fc20022b6d50140cc2b266f98122c6aa3bd (diff)
downloadgo-tangerine-8c4c7ea19207bf654d545273517b1319e1fc2269.tar
go-tangerine-8c4c7ea19207bf654d545273517b1319e1fc2269.tar.gz
go-tangerine-8c4c7ea19207bf654d545273517b1319e1fc2269.tar.bz2
go-tangerine-8c4c7ea19207bf654d545273517b1319e1fc2269.tar.lz
go-tangerine-8c4c7ea19207bf654d545273517b1319e1fc2269.tar.xz
go-tangerine-8c4c7ea19207bf654d545273517b1319e1fc2269.tar.zst
go-tangerine-8c4c7ea19207bf654d545273517b1319e1fc2269.zip
eth/fetcher: lower max cache size, add timeout slack
Diffstat (limited to 'eth')
-rw-r--r--eth/fetcher/fetcher.go19
1 files changed, 15 insertions, 4 deletions
diff --git a/eth/fetcher/fetcher.go b/eth/fetcher/fetcher.go
index 98170cf79..b80182a45 100644
--- a/eth/fetcher/fetcher.go
+++ b/eth/fetcher/fetcher.go
@@ -3,6 +3,7 @@ package fetcher
import (
"errors"
+ "fmt"
"math/rand"
"time"
@@ -15,9 +16,10 @@ import (
const (
arriveTimeout = 500 * time.Millisecond // Time allowance before an announced block is explicitly requested
+ gatherSlack = 100 * time.Millisecond // Interval used to collate almost-expired announces with fetches
fetchTimeout = 5 * time.Second // Maximum alloted time to return an explicitly requested block
maxUncleDist = 7 // Maximum allowed backward distance from the chain head
- maxQueueDist = 256 // Maximum allowed distance from the chain head to queue
+ maxQueueDist = 32 // Maximum allowed distance from the chain head to queue
)
var (
@@ -239,7 +241,7 @@ func (f *Fetcher) loop() {
request := make(map[string][]common.Hash)
for hash, announces := range f.announced {
- if time.Since(announces[0].time) > arriveTimeout {
+ if time.Since(announces[0].time) > arriveTimeout-gatherSlack {
announce := announces[rand.Intn(len(announces))]
if f.getBlock(hash) == nil {
request[announce.origin] = append(request[announce.origin], hash)
@@ -249,7 +251,16 @@ func (f *Fetcher) loop() {
}
}
// Send out all block requests
- for _, hashes := range request {
+ for peer, hashes := range request {
+ if glog.V(logger.Detail) && len(hashes) > 0 {
+ list := "["
+ for _, hash := range hashes {
+ list += fmt.Sprintf("%x, ", hash[:4])
+ }
+ list = list[:len(list)-2] + "]"
+
+ glog.V(logger.Detail).Infof("Peer %s: fetching %s", peer, list)
+ }
go f.fetching[hashes[0]].fetch(hashes)
}
// Schedule the next fetch if blocks are still pending
@@ -319,7 +330,7 @@ func (f *Fetcher) enqueue(peer string, block *types.Block) {
// Discard any past or too distant blocks
if dist := int64(block.NumberU64()) - int64(f.chainHeight()); dist < -maxUncleDist || dist > maxQueueDist {
- glog.V(logger.Detail).Infof("Peer %s: discarded block #%d [%x], distance %d", peer, block.NumberU64(), hash.Bytes()[:4], dist)
+ glog.V(logger.Debug).Infof("Peer %s: discarded block #%d [%x], distance %d", peer, block.NumberU64(), hash.Bytes()[:4], dist)
return
}
// Schedule the block for future importing