Switch to an ewma fork that allows setting the warmup samples #

This commit is contained in:
Frank Denis 2022-02-20 23:38:06 +01:00
parent 9ec8a35468
commit 7956ba5b10
11 changed files with 9 additions and 313 deletions

View file

@ -3,7 +3,7 @@ package main
import (
"sync"
"github.com/VividCortex/ewma"
"github.com/jedisct1/ewma"
)
const (

View file

@ -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
}