2018-02-05 22:00:47 +00:00
|
|
|
package forward
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"crypto/tls"
|
2018-05-18 09:46:14 +03:00
|
|
|
"runtime"
|
2018-02-15 10:21:57 +01:00
|
|
|
"sync/atomic"
|
2018-02-05 22:00:47 +00:00
|
|
|
"time"
|
|
|
|
|
|
2018-02-15 10:21:57 +01:00
|
|
|
"github.com/coredns/coredns/plugin/pkg/up"
|
2018-02-05 22:00:47 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// Proxy defines an upstream host.
|
|
|
|
|
type Proxy struct {
|
2018-11-20 08:48:56 +01:00
|
|
|
fails uint32
|
2019-10-01 07:41:29 +01:00
|
|
|
addr string
|
2018-06-05 17:21:09 +01:00
|
|
|
|
2018-09-19 07:29:37 +01:00
|
|
|
transport *Transport
|
2018-02-05 22:00:47 +00:00
|
|
|
|
2018-02-15 10:21:57 +01:00
|
|
|
// health checking
|
2018-07-09 15:14:55 +01:00
|
|
|
probe *up.Probe
|
|
|
|
|
health HealthChecker
|
2018-02-05 22:00:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// NewProxy returns a new proxy.
|
2018-09-19 07:29:37 +01:00
|
|
|
func NewProxy(addr, trans string) *Proxy {
|
2018-02-05 22:00:47 +00:00
|
|
|
p := &Proxy{
|
2018-02-15 10:21:57 +01:00
|
|
|
addr: addr,
|
|
|
|
|
fails: 0,
|
|
|
|
|
probe: up.New(),
|
2018-07-09 15:14:55 +01:00
|
|
|
transport: newTransport(addr),
|
2018-02-05 22:00:47 +00:00
|
|
|
}
|
2020-03-06 11:52:43 +01:00
|
|
|
p.health = NewHealthChecker(trans, true)
|
2018-05-18 09:46:14 +03:00
|
|
|
runtime.SetFinalizer(p, (*Proxy).finalizer)
|
2018-02-05 22:00:47 +00:00
|
|
|
return p
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-24 18:18:26 +01:00
|
|
|
// SetTLSConfig sets the TLS config in the lower p.transport and in the healthchecking client.
|
|
|
|
|
func (p *Proxy) SetTLSConfig(cfg *tls.Config) {
|
|
|
|
|
p.transport.SetTLSConfig(cfg)
|
2018-07-09 15:14:55 +01:00
|
|
|
p.health.SetTLSConfig(cfg)
|
2018-04-24 18:18:26 +01:00
|
|
|
}
|
2018-02-05 22:00:47 +00:00
|
|
|
|
2018-02-15 10:21:57 +01:00
|
|
|
// SetExpire sets the expire duration in the lower p.transport.
|
|
|
|
|
func (p *Proxy) SetExpire(expire time.Duration) { p.transport.SetExpire(expire) }
|
2018-02-05 22:00:47 +00:00
|
|
|
|
2018-02-15 10:21:57 +01:00
|
|
|
// Healthcheck kicks of a round of health checks for this proxy.
|
2018-07-09 15:14:55 +01:00
|
|
|
func (p *Proxy) Healthcheck() {
|
2018-10-09 22:50:30 +03:00
|
|
|
if p.health == nil {
|
|
|
|
|
log.Warning("No healthchecker")
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-09 15:14:55 +01:00
|
|
|
p.probe.Do(func() error {
|
|
|
|
|
return p.health.Check(p)
|
|
|
|
|
})
|
|
|
|
|
}
|
2018-02-05 22:00:47 +00:00
|
|
|
|
2018-02-15 10:21:57 +01:00
|
|
|
// Down returns true if this proxy is down, i.e. has *more* fails than maxfails.
|
|
|
|
|
func (p *Proxy) Down(maxfails uint32) bool {
|
|
|
|
|
if maxfails == 0 {
|
|
|
|
|
return false
|
|
|
|
|
}
|
2018-02-05 22:00:47 +00:00
|
|
|
|
2018-02-15 10:21:57 +01:00
|
|
|
fails := atomic.LoadUint32(&p.fails)
|
|
|
|
|
return fails > maxfails
|
|
|
|
|
}
|
2018-02-05 22:00:47 +00:00
|
|
|
|
2018-04-26 09:34:58 +01:00
|
|
|
// close stops the health checking goroutine.
|
2019-10-01 16:39:42 +01:00
|
|
|
func (p *Proxy) stop() { p.probe.Stop() }
|
2018-07-09 15:14:55 +01:00
|
|
|
func (p *Proxy) finalizer() { p.transport.Stop() }
|
2018-02-05 22:00:47 +00:00
|
|
|
|
2018-02-15 10:21:57 +01:00
|
|
|
// start starts the proxy's healthchecking.
|
2018-05-26 01:00:11 +03:00
|
|
|
func (p *Proxy) start(duration time.Duration) {
|
|
|
|
|
p.probe.Start(duration)
|
|
|
|
|
p.transport.Start()
|
|
|
|
|
}
|
2018-02-15 10:21:57 +01:00
|
|
|
|
2018-02-05 22:00:47 +00:00
|
|
|
const (
|
2018-06-15 02:37:22 -04:00
|
|
|
maxTimeout = 2 * time.Second
|
2018-02-05 22:00:47 +00:00
|
|
|
)
|
Speed up testing (#4239)
* Speed up testing
* make notification run in the background, this recudes the test_readme
time from 18s to 0.10s
* reduce time for zone reload
* TestServeDNSConcurrent remove entirely. This took a whopping 58s for
... ? A few minutes staring didn't reveal wth it is actually testing.
Making values smaller revealed race conditions in the tests. Remove
entirely.
* Move many interval values to variables so we can reset them to short
values for the tests.
* test_large_axfr: make the zone smaller. The number used 64K has no
rational, make it 64/10 to speed up.
* TestProxyThreeWay: use client with shorter timeout
A few random tidbits in other tests.
Total time saved: 177s (almost 3m) - which makes it worthwhile again to
run the test locally:
this branch:
~~~
ok github.com/coredns/coredns/test 10.437s
cd plugin; time go t ./...
5,51s user 7,51s system 11,15s elapsed 744%CPU (
~~~
master:
~~~
ok github.com/coredns/coredns/test 35.252s
cd plugin; time go t ./...
157,64s user 15,39s system 50,05s elapsed 345%CPU ()
~~~
tests/ -25s
plugins/ -40s
This brings the total on 20s, and another 10s can be saved by fixing
dnstapio. Moving this to 5s would be even better, but 10s is also nice.
Signed-off-by: Miek Gieben <miek@miek.nl>
* Also 0.01
Signed-off-by: Miek Gieben <miek@miek.nl>
2020-10-30 10:27:04 +01:00
|
|
|
|
|
|
|
|
var hcInterval = 500 * time.Millisecond
|