mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 21:57:44 +03:00
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:
parent
5d023d2a7c
commit
f67e9cab32
5 changed files with 11 additions and 10 deletions
|
@ -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 {
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue