mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 21:57:44 +03:00
Switch to an ewma fork that allows setting the warmup samples #
This commit is contained in:
parent
9ec8a35468
commit
7956ba5b10
11 changed files with 9 additions and 313 deletions
|
@ -3,7 +3,7 @@ package main
|
|||
import (
|
||||
"sync"
|
||||
|
||||
"github.com/VividCortex/ewma"
|
||||
"github.com/jedisct1/ewma"
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
@ -15,8 +15,8 @@ import (
|
|||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/VividCortex/ewma"
|
||||
"github.com/jedisct1/dlog"
|
||||
"github.com/jedisct1/ewma"
|
||||
clocksmith "github.com/jedisct1/go-clocksmith"
|
||||
stamps "github.com/jedisct1/go-dnsstamps"
|
||||
"github.com/miekg/dns"
|
||||
|
@ -266,7 +266,7 @@ func (serversInfo *ServersInfo) estimatorUpdate() {
|
|||
partialSort = true
|
||||
} else if candidateRtt > 0 && candidateRtt >= (serversInfo.inner[0].rtt.Value()+serversInfo.inner[activeCount-1].rtt.Value())/2.0*4.0 {
|
||||
if time.Since(serversInfo.inner[candidate].lastActionTS) > time.Duration(1*time.Minute) {
|
||||
serversInfo.inner[candidate].rtt.Add(candidateRtt/2.0)
|
||||
serversInfo.inner[candidate].rtt.Add(candidateRtt / 2.0)
|
||||
dlog.Debugf("Giving a new chance to candidate [%s], lowering its RTT from %d to %d (best: %d)", serversInfo.inner[candidate].Name, int(candidateRtt), int(serversInfo.inner[candidate].rtt.Value()), int(serversInfo.inner[0].rtt.Value()))
|
||||
partialSort = true
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue