2018-12-11 20:27:50 +00:00
|
|
|
package docker
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
2019-04-02 14:16:57 +00:00
|
|
|
"sync"
|
2018-12-11 20:27:50 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
docker "github.com/fsouza/go-dockerclient"
|
|
|
|
cstructs "github.com/hashicorp/nomad/client/structs"
|
2019-02-22 12:22:02 +00:00
|
|
|
"github.com/hashicorp/nomad/drivers/docker/util"
|
2022-02-02 16:59:53 +00:00
|
|
|
"github.com/hashicorp/nomad/helper"
|
2018-12-11 20:27:50 +00:00
|
|
|
nstructs "github.com/hashicorp/nomad/nomad/structs"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
// statsCollectorBackoffBaseline is the baseline time for exponential
|
|
|
|
// backoff while calling the docker stats api.
|
|
|
|
statsCollectorBackoffBaseline = 5 * time.Second
|
|
|
|
|
|
|
|
// statsCollectorBackoffLimit is the limit of the exponential backoff for
|
|
|
|
// calling the docker stats api.
|
|
|
|
statsCollectorBackoffLimit = 2 * time.Minute
|
|
|
|
)
|
|
|
|
|
2019-04-02 14:16:57 +00:00
|
|
|
// usageSender wraps a TaskResourceUsage chan such that it supports concurrent
|
2019-04-02 16:09:17 +00:00
|
|
|
// sending and closing, and backpressures by dropping events if necessary.
|
2019-04-02 14:16:57 +00:00
|
|
|
type usageSender struct {
|
|
|
|
closed bool
|
2020-12-10 15:29:18 +00:00
|
|
|
destCh chan<- *cstructs.TaskResourceUsage
|
2019-04-02 14:16:57 +00:00
|
|
|
mu sync.Mutex
|
|
|
|
}
|
|
|
|
|
2019-04-02 16:18:38 +00:00
|
|
|
// newStatsChanPipe returns a chan wrapped in a struct that supports concurrent
|
|
|
|
// sending and closing, and the receiver end of the chan.
|
2020-12-10 15:29:18 +00:00
|
|
|
func newStatsChanPipe() (*usageSender, <-chan *cstructs.TaskResourceUsage) {
|
2019-04-02 14:16:57 +00:00
|
|
|
destCh := make(chan *cstructs.TaskResourceUsage, 1)
|
|
|
|
return &usageSender{
|
|
|
|
destCh: destCh,
|
|
|
|
}, destCh
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// send resource usage to the receiver unless the chan is already full or
|
|
|
|
// closed.
|
|
|
|
func (u *usageSender) send(tru *cstructs.TaskResourceUsage) {
|
|
|
|
u.mu.Lock()
|
|
|
|
defer u.mu.Unlock()
|
|
|
|
|
|
|
|
if u.closed {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
case u.destCh <- tru:
|
|
|
|
default:
|
|
|
|
// Backpressure caused missed interval
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// close resource usage. Any further sends will be dropped.
|
|
|
|
func (u *usageSender) close() {
|
|
|
|
u.mu.Lock()
|
|
|
|
defer u.mu.Unlock()
|
|
|
|
|
|
|
|
if u.closed {
|
|
|
|
// already closed
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
u.closed = true
|
|
|
|
close(u.destCh)
|
|
|
|
}
|
|
|
|
|
2018-12-11 20:27:50 +00:00
|
|
|
// Stats starts collecting stats from the docker daemon and sends them on the
|
|
|
|
// returned channel.
|
|
|
|
func (h *taskHandle) Stats(ctx context.Context, interval time.Duration) (<-chan *cstructs.TaskResourceUsage, error) {
|
|
|
|
select {
|
|
|
|
case <-h.doneCh:
|
|
|
|
return nil, nstructs.NewRecoverableError(fmt.Errorf("container stopped"), false)
|
|
|
|
default:
|
|
|
|
}
|
2019-04-02 14:16:57 +00:00
|
|
|
|
2019-04-02 16:18:38 +00:00
|
|
|
destCh, recvCh := newStatsChanPipe()
|
2019-04-02 14:16:57 +00:00
|
|
|
go h.collectStats(ctx, destCh, interval)
|
|
|
|
return recvCh, nil
|
2018-12-11 20:27:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// collectStats starts collecting resource usage stats of a docker container
|
2019-04-02 14:16:57 +00:00
|
|
|
func (h *taskHandle) collectStats(ctx context.Context, destCh *usageSender, interval time.Duration) {
|
|
|
|
defer destCh.close()
|
|
|
|
|
2018-12-11 20:27:50 +00:00
|
|
|
// backoff and retry used if the docker stats API returns an error
|
2022-02-02 16:59:53 +00:00
|
|
|
var backoff time.Duration = 0
|
2018-12-11 20:27:50 +00:00
|
|
|
var retry int
|
2022-02-02 16:59:53 +00:00
|
|
|
|
|
|
|
// create an interval timer
|
|
|
|
timer, stop := helper.NewSafeTimer(backoff)
|
|
|
|
defer stop()
|
|
|
|
|
2018-12-11 20:27:50 +00:00
|
|
|
// loops until doneCh is closed
|
|
|
|
for {
|
2022-02-02 16:59:53 +00:00
|
|
|
timer.Reset(backoff)
|
|
|
|
|
2018-12-11 20:27:50 +00:00
|
|
|
if backoff > 0 {
|
|
|
|
select {
|
2022-02-02 16:59:53 +00:00
|
|
|
case <-timer.C:
|
2018-12-11 20:27:50 +00:00
|
|
|
case <-ctx.Done():
|
|
|
|
return
|
|
|
|
case <-h.doneCh:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2022-02-02 16:59:53 +00:00
|
|
|
|
2018-12-11 20:27:50 +00:00
|
|
|
// make a channel for docker stats structs and start a collector to
|
|
|
|
// receive stats from docker and emit nomad stats
|
|
|
|
// statsCh will always be closed by docker client.
|
|
|
|
statsCh := make(chan *docker.Stats)
|
2019-04-02 14:16:57 +00:00
|
|
|
go dockerStatsCollector(destCh, statsCh, interval)
|
2018-12-11 20:27:50 +00:00
|
|
|
|
|
|
|
statsOpts := docker.StatsOptions{
|
|
|
|
ID: h.containerID,
|
|
|
|
Context: ctx,
|
|
|
|
Done: h.doneCh,
|
|
|
|
Stats: statsCh,
|
|
|
|
Stream: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stats blocks until an error has occurred, or doneCh has been closed
|
|
|
|
if err := h.client.Stats(statsOpts); err != nil && err != io.ErrClosedPipe {
|
|
|
|
// An error occurred during stats collection, retry with backoff
|
|
|
|
h.logger.Debug("error collecting stats from container", "error", err)
|
|
|
|
|
|
|
|
// Calculate the new backoff
|
|
|
|
backoff = (1 << (2 * uint64(retry))) * statsCollectorBackoffBaseline
|
|
|
|
if backoff > statsCollectorBackoffLimit {
|
|
|
|
backoff = statsCollectorBackoffLimit
|
|
|
|
}
|
|
|
|
// Increment retry counter
|
|
|
|
retry++
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
// Stats finished either because context was canceled, doneCh was closed
|
|
|
|
// or the container stopped. Stop stats collections.
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2019-02-22 12:22:02 +00:00
|
|
|
|
2019-04-02 14:16:57 +00:00
|
|
|
func dockerStatsCollector(destCh *usageSender, statsCh <-chan *docker.Stats, interval time.Duration) {
|
2018-12-11 20:27:50 +00:00
|
|
|
var resourceUsage *cstructs.TaskResourceUsage
|
|
|
|
|
|
|
|
// hasSentInitialStats is used so as to emit the first stats received from
|
|
|
|
// the docker daemon
|
|
|
|
var hasSentInitialStats bool
|
|
|
|
|
|
|
|
// timer is used to send nomad status at the specified interval
|
|
|
|
timer := time.NewTimer(interval)
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-timer.C:
|
|
|
|
// it is possible for the timer to go off before the first stats
|
|
|
|
// has been emitted from docker
|
|
|
|
if resourceUsage == nil {
|
|
|
|
continue
|
|
|
|
}
|
2019-04-02 14:16:57 +00:00
|
|
|
|
2018-12-11 20:27:50 +00:00
|
|
|
// sending to destCh could block, drop this interval if it does
|
2019-04-02 14:16:57 +00:00
|
|
|
destCh.send(resourceUsage)
|
|
|
|
|
2018-12-11 20:27:50 +00:00
|
|
|
timer.Reset(interval)
|
2019-04-02 14:16:57 +00:00
|
|
|
|
2018-12-11 20:27:50 +00:00
|
|
|
case s, ok := <-statsCh:
|
|
|
|
// if statsCh is closed stop collection
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// s should always be set, but check and skip just in case
|
|
|
|
if s != nil {
|
2019-02-22 12:22:02 +00:00
|
|
|
resourceUsage = util.DockerStatsToTaskResourceUsage(s)
|
2018-12-11 20:27:50 +00:00
|
|
|
// send stats next interation if this is the first time received
|
|
|
|
// from docker
|
|
|
|
if !hasSentInitialStats {
|
|
|
|
timer.Reset(0)
|
|
|
|
hasSentInitialStats = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|