regression: fix ewma warmup again (#2079)

* Update estimators.go

* Update go.mod

* Update modules.txt

* Update go.sum

* Update serversInfo.go

* Update estimators.go

* Update serversInfo.go
This commit is contained in:
livingentity 2022-04-02 17:41:36 +02:00 committed by GitHub
parent 5d023d2a7c
commit f67e9cab32
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 11 additions and 10 deletions

View file

@ -3,7 +3,7 @@ package main
import (
"sync"
"github.com/lifenjoiner/ewma"
"github.com/jedisct1/ewma"
)
const (
@ -13,7 +13,7 @@ const (
type QuestionSizeEstimator struct {
sync.RWMutex
minQuestionSize int
ewma *ewma.EWMA
ewma ewma.MovingAverage
}
func NewQuestionSizeEstimator() QuestionSizeEstimator {

View file

@ -16,9 +16,9 @@ import (
"time"
"github.com/jedisct1/dlog"
"github.com/jedisct1/ewma"
clocksmith "github.com/jedisct1/go-clocksmith"
stamps "github.com/jedisct1/go-dnsstamps"
"github.com/lifenjoiner/ewma"
"github.com/miekg/dns"
"golang.org/x/crypto/ed25519"
)
@ -46,7 +46,7 @@ type DOHClientCreds struct {
type ServerInfo struct {
DOHClientCreds DOHClientCreds
lastActionTS time.Time
rtt *ewma.EWMA
rtt ewma.MovingAverage
Name string
HostName string
UDPAddr *net.UDPAddr
@ -199,6 +199,7 @@ func (serversInfo *ServersInfo) refreshServer(proxy *Proxy, name string, stamp s
dlog.Fatalf("[%s] != [%s]", name, newServer.Name)
}
newServer.rtt = ewma.NewMovingAverage(RTTEwmaDecay)
newServer.rtt.SetWarmupSamples(1)
newServer.rtt.Set(float64(newServer.initialRtt))
isNew = true
serversInfo.Lock()