2015-09-11 23:51:18 +00:00
|
|
|
|
package api
|
|
|
|
|
|
2015-09-12 00:20:33 +00:00
|
|
|
|
import (
|
2018-03-28 21:01:54 +00:00
|
|
|
|
"context"
|
2018-02-07 02:51:34 +00:00
|
|
|
|
"fmt"
|
2015-09-17 19:40:51 +00:00
|
|
|
|
"sort"
|
2018-11-14 16:51:50 +00:00
|
|
|
|
"strconv"
|
2018-01-25 16:30:15 +00:00
|
|
|
|
"time"
|
2015-09-12 00:20:33 +00:00
|
|
|
|
)
|
|
|
|
|
|
2019-01-18 23:36:16 +00:00
|
|
|
|
const (
|
|
|
|
|
NodeStatusInit = "initializing"
|
|
|
|
|
NodeStatusReady = "ready"
|
|
|
|
|
NodeStatusDown = "down"
|
|
|
|
|
|
|
|
|
|
// NodeSchedulingEligible and Ineligible marks the node as eligible or not,
|
2020-08-14 07:40:03 +00:00
|
|
|
|
// respectively, for receiving allocations. This is orthogonal to the node
|
2019-01-18 23:36:16 +00:00
|
|
|
|
// status being ready.
|
|
|
|
|
NodeSchedulingEligible = "eligible"
|
|
|
|
|
NodeSchedulingIneligible = "ineligible"
|
2021-05-07 17:58:40 +00:00
|
|
|
|
|
|
|
|
|
DrainStatusDraining DrainStatus = "draining"
|
|
|
|
|
DrainStatusComplete DrainStatus = "complete"
|
|
|
|
|
DrainStatusCanceled DrainStatus = "canceled"
|
2019-01-18 23:36:16 +00:00
|
|
|
|
)
|
|
|
|
|
|
2015-09-11 23:51:18 +00:00
|
|
|
|
// Nodes is used to query node-related API endpoints
|
|
|
|
|
type Nodes struct {
|
|
|
|
|
client *Client
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Nodes returns a handle on the node endpoints.
|
|
|
|
|
func (c *Client) Nodes() *Nodes {
|
|
|
|
|
return &Nodes{client: c}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// List is used to list out all of the nodes
|
2015-09-14 02:55:47 +00:00
|
|
|
|
func (n *Nodes) List(q *QueryOptions) ([]*NodeListStub, *QueryMeta, error) {
|
2015-09-17 19:40:51 +00:00
|
|
|
|
var resp NodeIndexSort
|
2015-09-11 23:51:18 +00:00
|
|
|
|
qm, err := n.client.query("/v1/nodes", &resp, q)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, nil, err
|
|
|
|
|
}
|
2017-09-26 22:26:33 +00:00
|
|
|
|
sort.Sort(resp)
|
2015-09-11 23:51:18 +00:00
|
|
|
|
return resp, qm, nil
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-24 10:46:59 +00:00
|
|
|
|
func (n *Nodes) PrefixList(prefix string) ([]*NodeListStub, *QueryMeta, error) {
|
|
|
|
|
return n.List(&QueryOptions{Prefix: prefix})
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-15 15:44:03 +00:00
|
|
|
|
func (n *Nodes) PrefixListOpts(prefix string, opts *QueryOptions) ([]*NodeListStub, *QueryMeta, error) {
|
|
|
|
|
if opts == nil {
|
|
|
|
|
opts = &QueryOptions{Prefix: prefix}
|
|
|
|
|
} else {
|
|
|
|
|
opts.Prefix = prefix
|
|
|
|
|
}
|
|
|
|
|
return n.List(opts)
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-11 23:51:18 +00:00
|
|
|
|
// Info is used to query a specific node by its ID.
|
|
|
|
|
func (n *Nodes) Info(nodeID string, q *QueryOptions) (*Node, *QueryMeta, error) {
|
|
|
|
|
var resp Node
|
|
|
|
|
qm, err := n.client.query("/v1/node/"+nodeID, &resp, q)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, nil, err
|
|
|
|
|
}
|
|
|
|
|
return &resp, qm, nil
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-23 23:56:36 +00:00
|
|
|
|
// NodeUpdateDrainRequest is used to update the drain specification for a node.
|
|
|
|
|
type NodeUpdateDrainRequest struct {
|
|
|
|
|
// NodeID is the node to update the drain specification for.
|
|
|
|
|
NodeID string
|
|
|
|
|
|
|
|
|
|
// DrainSpec is the drain specification to set for the node. A nil DrainSpec
|
|
|
|
|
// will disable draining.
|
|
|
|
|
DrainSpec *DrainSpec
|
2018-03-08 19:06:30 +00:00
|
|
|
|
|
2018-03-21 17:41:06 +00:00
|
|
|
|
// MarkEligible marks the node as eligible for scheduling if removing
|
|
|
|
|
// the drain strategy.
|
2018-03-08 19:06:30 +00:00
|
|
|
|
MarkEligible bool
|
2021-05-07 17:58:40 +00:00
|
|
|
|
|
|
|
|
|
// Meta allows operators to specify metadata related to the drain operation
|
|
|
|
|
Meta map[string]string
|
2018-02-23 23:56:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-27 22:53:24 +00:00
|
|
|
|
// NodeDrainUpdateResponse is used to respond to a node drain update
|
|
|
|
|
type NodeDrainUpdateResponse struct {
|
|
|
|
|
NodeModifyIndex uint64
|
|
|
|
|
EvalIDs []string
|
|
|
|
|
EvalCreateIndex uint64
|
|
|
|
|
WriteMeta
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-07 17:58:40 +00:00
|
|
|
|
// DrainOptions is used to pass through node drain parameters
|
|
|
|
|
type DrainOptions struct {
|
|
|
|
|
// DrainSpec contains the drain specification for the node. If non-nil,
|
|
|
|
|
// the node will be marked ineligible and begin/continue draining according
|
|
|
|
|
// to the provided drain spec.
|
|
|
|
|
// If nil, any existing drain operation will be canceled.
|
|
|
|
|
DrainSpec *DrainSpec
|
|
|
|
|
|
|
|
|
|
// MarkEligible indicates whether the node should be marked as eligible when
|
|
|
|
|
// canceling a drain operation.
|
|
|
|
|
MarkEligible bool
|
|
|
|
|
|
|
|
|
|
// Meta is metadata that is persisted in Node.LastDrain about this
|
|
|
|
|
// drain update.
|
|
|
|
|
Meta map[string]string
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-08 19:06:30 +00:00
|
|
|
|
// UpdateDrain is used to update the drain strategy for a given node. If
|
|
|
|
|
// markEligible is true and the drain is being removed, the node will be marked
|
2018-05-30 21:54:07 +00:00
|
|
|
|
// as having its scheduling being eligible
|
2018-03-27 22:53:24 +00:00
|
|
|
|
func (n *Nodes) UpdateDrain(nodeID string, spec *DrainSpec, markEligible bool, q *WriteOptions) (*NodeDrainUpdateResponse, error) {
|
2021-05-07 17:58:40 +00:00
|
|
|
|
resp, err := n.UpdateDrainOpts(nodeID, &DrainOptions{
|
2018-03-08 19:06:30 +00:00
|
|
|
|
DrainSpec: spec,
|
|
|
|
|
MarkEligible: markEligible,
|
2021-05-07 17:58:40 +00:00
|
|
|
|
Meta: nil,
|
|
|
|
|
}, q)
|
|
|
|
|
return resp, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// UpdateDrainWithMeta is used to update the drain strategy for a given node. If
|
|
|
|
|
// markEligible is true and the drain is being removed, the node will be marked
|
|
|
|
|
// as having its scheduling being eligible
|
|
|
|
|
func (n *Nodes) UpdateDrainOpts(nodeID string, opts *DrainOptions, q *WriteOptions) (*NodeDrainUpdateResponse,
|
|
|
|
|
error) {
|
|
|
|
|
req := &NodeUpdateDrainRequest{
|
|
|
|
|
NodeID: nodeID,
|
|
|
|
|
DrainSpec: opts.DrainSpec,
|
|
|
|
|
MarkEligible: opts.MarkEligible,
|
|
|
|
|
Meta: opts.Meta,
|
2018-02-23 23:56:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-27 22:53:24 +00:00
|
|
|
|
var resp NodeDrainUpdateResponse
|
|
|
|
|
wm, err := n.client.write("/v1/node/"+nodeID+"/drain", req, &resp, q)
|
2015-09-11 23:51:18 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
2018-03-27 22:53:24 +00:00
|
|
|
|
resp.WriteMeta = *wm
|
|
|
|
|
return &resp, nil
|
2015-09-11 23:51:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-30 18:07:40 +00:00
|
|
|
|
// MonitorMsgLevels represents the severity log level of a MonitorMessage.
|
|
|
|
|
type MonitorMsgLevel int
|
|
|
|
|
|
|
|
|
|
const (
|
2018-03-30 18:42:11 +00:00
|
|
|
|
MonitorMsgLevelNormal MonitorMsgLevel = 0
|
|
|
|
|
MonitorMsgLevelInfo MonitorMsgLevel = 1
|
|
|
|
|
MonitorMsgLevelWarn MonitorMsgLevel = 2
|
|
|
|
|
MonitorMsgLevelError MonitorMsgLevel = 3
|
2018-03-30 18:07:40 +00:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// MonitorMessage contains a message and log level.
|
|
|
|
|
type MonitorMessage struct {
|
|
|
|
|
Level MonitorMsgLevel
|
|
|
|
|
Message string
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Messagef formats a new MonitorMessage.
|
|
|
|
|
func Messagef(lvl MonitorMsgLevel, msg string, args ...interface{}) *MonitorMessage {
|
|
|
|
|
return &MonitorMessage{
|
|
|
|
|
Level: lvl,
|
|
|
|
|
Message: fmt.Sprintf(msg, args...),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *MonitorMessage) String() string {
|
|
|
|
|
return m.Message
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-28 21:01:54 +00:00
|
|
|
|
// MonitorDrain emits drain related events on the returned string channel. The
|
|
|
|
|
// channel will be closed when all allocations on the draining node have
|
2019-11-11 19:15:17 +00:00
|
|
|
|
// stopped, when an error occurs, or if the context is canceled.
|
2018-03-30 18:07:40 +00:00
|
|
|
|
func (n *Nodes) MonitorDrain(ctx context.Context, nodeID string, index uint64, ignoreSys bool) <-chan *MonitorMessage {
|
|
|
|
|
outCh := make(chan *MonitorMessage, 8)
|
|
|
|
|
nodeCh := make(chan *MonitorMessage, 1)
|
|
|
|
|
allocCh := make(chan *MonitorMessage, 8)
|
2018-03-28 21:01:54 +00:00
|
|
|
|
|
|
|
|
|
// Multiplex node and alloc chans onto outCh. This goroutine closes
|
2018-12-21 00:03:07 +00:00
|
|
|
|
// outCh when other chans have been closed.
|
2018-03-28 21:01:54 +00:00
|
|
|
|
multiplexCtx, cancel := context.WithCancel(ctx)
|
2018-06-06 00:58:44 +00:00
|
|
|
|
go n.monitorDrainMultiplex(multiplexCtx, cancel, outCh, nodeCh, allocCh)
|
2018-03-28 21:01:54 +00:00
|
|
|
|
|
|
|
|
|
// Monitor node for updates
|
2018-12-21 00:03:07 +00:00
|
|
|
|
go n.monitorDrainNode(multiplexCtx, nodeID, index, nodeCh)
|
2018-03-28 21:01:54 +00:00
|
|
|
|
|
|
|
|
|
// Monitor allocs on node for updates
|
2018-03-30 18:07:40 +00:00
|
|
|
|
go n.monitorDrainAllocs(multiplexCtx, nodeID, ignoreSys, allocCh)
|
2018-03-28 21:01:54 +00:00
|
|
|
|
|
|
|
|
|
return outCh
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// monitorDrainMultiplex multiplexes node and alloc updates onto the out chan.
|
|
|
|
|
// Closes out chan when either the context is canceled, both update chans are
|
|
|
|
|
// closed, or an error occurs.
|
|
|
|
|
func (n *Nodes) monitorDrainMultiplex(ctx context.Context, cancel func(),
|
2018-03-30 18:07:40 +00:00
|
|
|
|
outCh chan<- *MonitorMessage, nodeCh, allocCh <-chan *MonitorMessage) {
|
2018-03-28 21:01:54 +00:00
|
|
|
|
|
|
|
|
|
defer cancel()
|
|
|
|
|
defer close(outCh)
|
2018-03-30 18:07:40 +00:00
|
|
|
|
|
2018-03-28 21:01:54 +00:00
|
|
|
|
nodeOk := true
|
|
|
|
|
allocOk := true
|
2018-03-30 18:07:40 +00:00
|
|
|
|
var msg *MonitorMessage
|
2018-03-28 21:01:54 +00:00
|
|
|
|
for {
|
|
|
|
|
// If both chans have been closed, close the output chan
|
|
|
|
|
if !nodeOk && !allocOk {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
select {
|
|
|
|
|
case msg, nodeOk = <-nodeCh:
|
|
|
|
|
if !nodeOk {
|
|
|
|
|
// nil chan to prevent further recvs
|
|
|
|
|
nodeCh = nil
|
2018-12-21 00:03:07 +00:00
|
|
|
|
continue
|
2018-03-28 21:01:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case msg, allocOk = <-allocCh:
|
|
|
|
|
if !allocOk {
|
|
|
|
|
// nil chan to prevent further recvs
|
|
|
|
|
allocCh = nil
|
2018-12-21 00:03:07 +00:00
|
|
|
|
continue
|
2018-03-28 21:01:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case <-ctx.Done():
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-30 18:07:40 +00:00
|
|
|
|
if msg == nil {
|
2018-03-28 21:01:54 +00:00
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
select {
|
|
|
|
|
case outCh <- msg:
|
|
|
|
|
case <-ctx.Done():
|
|
|
|
|
return
|
|
|
|
|
}
|
2018-03-30 18:07:40 +00:00
|
|
|
|
|
|
|
|
|
// Abort on error messages
|
|
|
|
|
if msg.Level == MonitorMsgLevelError {
|
|
|
|
|
return
|
|
|
|
|
}
|
2018-03-28 21:01:54 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// monitorDrainNode emits node updates on nodeCh and closes the channel when
|
|
|
|
|
// the node has finished draining.
|
2018-12-21 00:03:07 +00:00
|
|
|
|
func (n *Nodes) monitorDrainNode(ctx context.Context, nodeID string,
|
|
|
|
|
index uint64, nodeCh chan<- *MonitorMessage) {
|
|
|
|
|
|
2018-03-28 21:01:54 +00:00
|
|
|
|
defer close(nodeCh)
|
|
|
|
|
|
|
|
|
|
var lastStrategy *DrainStrategy
|
2018-03-30 18:07:40 +00:00
|
|
|
|
q := QueryOptions{
|
|
|
|
|
AllowStale: true,
|
|
|
|
|
WaitIndex: index,
|
|
|
|
|
}
|
2018-03-28 21:01:54 +00:00
|
|
|
|
for {
|
|
|
|
|
node, meta, err := n.Info(nodeID, &q)
|
|
|
|
|
if err != nil {
|
2018-03-30 18:07:40 +00:00
|
|
|
|
msg := Messagef(MonitorMsgLevelError, "Error monitoring node: %v", err)
|
2018-03-28 21:01:54 +00:00
|
|
|
|
select {
|
2018-03-30 18:07:40 +00:00
|
|
|
|
case nodeCh <- msg:
|
2018-03-28 21:01:54 +00:00
|
|
|
|
case <-ctx.Done():
|
|
|
|
|
}
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if node.DrainStrategy == nil {
|
2021-04-03 07:50:23 +00:00
|
|
|
|
msg := Messagef(MonitorMsgLevelInfo, "Drain complete for node %s", nodeID)
|
2018-03-28 21:01:54 +00:00
|
|
|
|
select {
|
|
|
|
|
case nodeCh <- msg:
|
|
|
|
|
case <-ctx.Done():
|
|
|
|
|
}
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-18 17:48:15 +00:00
|
|
|
|
if node.Status == NodeStatusDown {
|
2018-03-30 21:02:42 +00:00
|
|
|
|
msg := Messagef(MonitorMsgLevelWarn, "Node %q down", nodeID)
|
|
|
|
|
select {
|
|
|
|
|
case nodeCh <- msg:
|
|
|
|
|
case <-ctx.Done():
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-28 21:01:54 +00:00
|
|
|
|
// DrainStrategy changed
|
|
|
|
|
if lastStrategy != nil && !node.DrainStrategy.Equal(lastStrategy) {
|
2018-03-30 18:07:40 +00:00
|
|
|
|
msg := Messagef(MonitorMsgLevelInfo, "Node %q drain updated: %s", nodeID, node.DrainStrategy)
|
2018-03-28 21:01:54 +00:00
|
|
|
|
select {
|
|
|
|
|
case nodeCh <- msg:
|
|
|
|
|
case <-ctx.Done():
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
lastStrategy = node.DrainStrategy
|
|
|
|
|
|
|
|
|
|
// Drain still ongoing, update index and block for updates
|
2018-03-30 19:43:53 +00:00
|
|
|
|
q.WaitIndex = meta.LastIndex
|
2018-03-28 21:01:54 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// monitorDrainAllocs emits alloc updates on allocCh and closes the channel
|
|
|
|
|
// when the node has finished draining.
|
2018-03-30 18:07:40 +00:00
|
|
|
|
func (n *Nodes) monitorDrainAllocs(ctx context.Context, nodeID string, ignoreSys bool, allocCh chan<- *MonitorMessage) {
|
2018-03-28 21:01:54 +00:00
|
|
|
|
defer close(allocCh)
|
|
|
|
|
|
|
|
|
|
q := QueryOptions{AllowStale: true}
|
2018-03-30 17:18:14 +00:00
|
|
|
|
initial := make(map[string]*Allocation, 4)
|
2018-03-28 21:01:54 +00:00
|
|
|
|
|
|
|
|
|
for {
|
2018-03-30 17:18:14 +00:00
|
|
|
|
allocs, meta, err := n.Allocations(nodeID, &q)
|
2018-03-28 21:01:54 +00:00
|
|
|
|
if err != nil {
|
2018-03-30 18:07:40 +00:00
|
|
|
|
msg := Messagef(MonitorMsgLevelError, "Error monitoring allocations: %v", err)
|
2018-03-28 21:01:54 +00:00
|
|
|
|
select {
|
2018-03-30 18:07:40 +00:00
|
|
|
|
case allocCh <- msg:
|
2018-03-28 21:01:54 +00:00
|
|
|
|
case <-ctx.Done():
|
|
|
|
|
}
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-30 17:18:14 +00:00
|
|
|
|
q.WaitIndex = meta.LastIndex
|
|
|
|
|
|
2018-03-28 21:01:54 +00:00
|
|
|
|
runningAllocs := 0
|
|
|
|
|
for _, a := range allocs {
|
|
|
|
|
// Get previous version of alloc
|
|
|
|
|
orig, existing := initial[a.ID]
|
|
|
|
|
|
|
|
|
|
// Update local alloc state
|
|
|
|
|
initial[a.ID] = a
|
|
|
|
|
|
|
|
|
|
migrating := a.DesiredTransition.ShouldMigrate()
|
|
|
|
|
|
|
|
|
|
var msg string
|
|
|
|
|
switch {
|
|
|
|
|
case !existing:
|
|
|
|
|
// Should only be possible if response
|
|
|
|
|
// from initial Allocations call was
|
|
|
|
|
// stale. No need to output
|
|
|
|
|
|
|
|
|
|
case orig.ClientStatus != a.ClientStatus:
|
|
|
|
|
// Alloc status has changed; output
|
|
|
|
|
msg = fmt.Sprintf("status %s -> %s", orig.ClientStatus, a.ClientStatus)
|
|
|
|
|
|
|
|
|
|
case migrating && !orig.DesiredTransition.ShouldMigrate():
|
|
|
|
|
// Alloc was marked for migration
|
|
|
|
|
msg = "marked for migration"
|
2018-03-30 21:02:42 +00:00
|
|
|
|
|
2019-01-18 17:48:15 +00:00
|
|
|
|
case migrating && (orig.DesiredStatus != a.DesiredStatus) && a.DesiredStatus == AllocDesiredStatusStop:
|
2018-03-28 21:01:54 +00:00
|
|
|
|
// Alloc has already been marked for migration and is now being stopped
|
|
|
|
|
msg = "draining"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if msg != "" {
|
|
|
|
|
select {
|
2018-03-30 18:42:11 +00:00
|
|
|
|
case allocCh <- Messagef(MonitorMsgLevelNormal, "Alloc %q %s", a.ID, msg):
|
2018-03-28 21:01:54 +00:00
|
|
|
|
case <-ctx.Done():
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Ignore malformed allocs
|
|
|
|
|
if a.Job == nil || a.Job.Type == nil {
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Track how many allocs are still running
|
2019-01-18 17:48:15 +00:00
|
|
|
|
if ignoreSys && a.Job.Type != nil && *a.Job.Type == JobTypeSystem {
|
2018-03-28 21:01:54 +00:00
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch a.ClientStatus {
|
2019-01-18 17:48:15 +00:00
|
|
|
|
case AllocClientStatusPending, AllocClientStatusRunning:
|
2018-03-28 21:01:54 +00:00
|
|
|
|
runningAllocs++
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Exit if all allocs are terminal
|
|
|
|
|
if runningAllocs == 0 {
|
2019-11-05 21:53:38 +00:00
|
|
|
|
msg := Messagef(MonitorMsgLevelInfo, "All allocations on node %q have stopped", nodeID)
|
2018-03-28 21:01:54 +00:00
|
|
|
|
select {
|
|
|
|
|
case allocCh <- msg:
|
|
|
|
|
case <-ctx.Done():
|
|
|
|
|
}
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-27 20:59:27 +00:00
|
|
|
|
// NodeUpdateEligibilityRequest is used to update the drain specification for a node.
|
|
|
|
|
type NodeUpdateEligibilityRequest struct {
|
|
|
|
|
// NodeID is the node to update the drain specification for.
|
|
|
|
|
NodeID string
|
|
|
|
|
Eligibility string
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-27 22:53:24 +00:00
|
|
|
|
// NodeEligibilityUpdateResponse is used to respond to a node eligibility update
|
|
|
|
|
type NodeEligibilityUpdateResponse struct {
|
|
|
|
|
NodeModifyIndex uint64
|
|
|
|
|
EvalIDs []string
|
|
|
|
|
EvalCreateIndex uint64
|
|
|
|
|
WriteMeta
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-27 20:59:27 +00:00
|
|
|
|
// ToggleEligibility is used to update the scheduling eligibility of the node
|
2018-03-27 22:53:24 +00:00
|
|
|
|
func (n *Nodes) ToggleEligibility(nodeID string, eligible bool, q *WriteOptions) (*NodeEligibilityUpdateResponse, error) {
|
2019-01-18 17:48:15 +00:00
|
|
|
|
e := NodeSchedulingEligible
|
2018-02-27 20:59:27 +00:00
|
|
|
|
if !eligible {
|
2019-01-18 17:48:15 +00:00
|
|
|
|
e = NodeSchedulingIneligible
|
2018-02-27 20:59:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
req := &NodeUpdateEligibilityRequest{
|
|
|
|
|
NodeID: nodeID,
|
|
|
|
|
Eligibility: e,
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-27 22:53:24 +00:00
|
|
|
|
var resp NodeEligibilityUpdateResponse
|
|
|
|
|
wm, err := n.client.write("/v1/node/"+nodeID+"/eligibility", req, &resp, q)
|
2018-02-27 20:59:27 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
2018-03-27 22:53:24 +00:00
|
|
|
|
resp.WriteMeta = *wm
|
|
|
|
|
return &resp, nil
|
2018-02-27 20:59:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-09-11 23:51:18 +00:00
|
|
|
|
// Allocations is used to return the allocations associated with a node.
|
2015-11-09 16:54:18 +00:00
|
|
|
|
func (n *Nodes) Allocations(nodeID string, q *QueryOptions) ([]*Allocation, *QueryMeta, error) {
|
|
|
|
|
var resp []*Allocation
|
2015-09-11 23:51:18 +00:00
|
|
|
|
qm, err := n.client.query("/v1/node/"+nodeID+"/allocations", &resp, q)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, nil, err
|
|
|
|
|
}
|
2015-11-09 16:54:18 +00:00
|
|
|
|
sort.Sort(AllocationSort(resp))
|
2015-09-11 23:51:18 +00:00
|
|
|
|
return resp, qm, nil
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-11 16:47:14 +00:00
|
|
|
|
func (n *Nodes) CSIVolumes(nodeID string, q *QueryOptions) ([]*CSIVolumeListStub, error) {
|
|
|
|
|
var resp []*CSIVolumeListStub
|
2020-03-12 18:20:40 +00:00
|
|
|
|
path := fmt.Sprintf("/v1/volumes?type=csi&node_id=%s", nodeID)
|
2020-03-11 16:47:14 +00:00
|
|
|
|
if _, err := n.client.query(path, &resp, q); err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return resp, nil
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-11 23:51:18 +00:00
|
|
|
|
// ForceEvaluate is used to force-evaluate an existing node.
|
|
|
|
|
func (n *Nodes) ForceEvaluate(nodeID string, q *WriteOptions) (string, *WriteMeta, error) {
|
|
|
|
|
var resp nodeEvalResponse
|
|
|
|
|
wm, err := n.client.write("/v1/node/"+nodeID+"/evaluate", nil, &resp, q)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return "", nil, err
|
|
|
|
|
}
|
|
|
|
|
return resp.EvalID, wm, nil
|
|
|
|
|
}
|
|
|
|
|
|
2016-05-22 03:05:51 +00:00
|
|
|
|
func (n *Nodes) Stats(nodeID string, q *QueryOptions) (*HostStats, error) {
|
2016-06-12 16:32:38 +00:00
|
|
|
|
var resp HostStats
|
2018-02-07 02:51:34 +00:00
|
|
|
|
path := fmt.Sprintf("/v1/client/stats?node_id=%s", nodeID)
|
|
|
|
|
if _, err := n.client.query(path, &resp, q); err != nil {
|
2016-05-22 03:05:51 +00:00
|
|
|
|
return nil, err
|
|
|
|
|
}
|
2018-11-13 20:35:42 +00:00
|
|
|
|
|
2016-06-12 16:32:38 +00:00
|
|
|
|
return &resp, nil
|
2016-05-22 03:05:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-01-13 00:18:29 +00:00
|
|
|
|
func (n *Nodes) GC(nodeID string, q *QueryOptions) error {
|
2018-02-07 02:51:34 +00:00
|
|
|
|
path := fmt.Sprintf("/v1/client/gc?node_id=%s", nodeID)
|
2019-11-08 15:04:15 +00:00
|
|
|
|
_, err := n.client.query(path, nil, q)
|
2018-02-07 02:51:34 +00:00
|
|
|
|
return err
|
|
|
|
|
}
|
2017-08-28 18:32:52 +00:00
|
|
|
|
|
2018-02-07 02:51:34 +00:00
|
|
|
|
// TODO Add tests
|
|
|
|
|
func (n *Nodes) GcAlloc(allocID string, q *QueryOptions) error {
|
|
|
|
|
path := fmt.Sprintf("/v1/client/allocation/%s/gc", allocID)
|
2019-11-08 15:04:15 +00:00
|
|
|
|
_, err := n.client.query(path, nil, q)
|
2017-01-13 00:18:29 +00:00
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-14 07:40:03 +00:00
|
|
|
|
// Purge removes a node from the system. Nodes can still re-join the cluster if
|
|
|
|
|
// they are alive.
|
|
|
|
|
func (n *Nodes) Purge(nodeID string, q *QueryOptions) (*NodePurgeResponse, *QueryMeta, error) {
|
|
|
|
|
var resp NodePurgeResponse
|
|
|
|
|
path := fmt.Sprintf("/v1/node/%s/purge", nodeID)
|
|
|
|
|
qm, err := n.client.putQuery(path, nil, &resp, q)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, nil, err
|
|
|
|
|
}
|
|
|
|
|
return &resp, qm, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// NodePurgeResponse is used to deserialize a Purge response.
|
|
|
|
|
type NodePurgeResponse struct {
|
|
|
|
|
EvalIDs []string
|
|
|
|
|
EvalCreateIndex uint64
|
|
|
|
|
NodeModifyIndex uint64
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-25 16:30:15 +00:00
|
|
|
|
// DriverInfo is used to deserialize a DriverInfo entry
|
|
|
|
|
type DriverInfo struct {
|
|
|
|
|
Attributes map[string]string
|
|
|
|
|
Detected bool
|
|
|
|
|
Healthy bool
|
|
|
|
|
HealthDescription string
|
|
|
|
|
UpdateTime time.Time
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-25 13:43:44 +00:00
|
|
|
|
// HostVolumeInfo is used to return metadata about a given HostVolume.
|
|
|
|
|
type HostVolumeInfo struct {
|
2019-08-21 20:34:41 +00:00
|
|
|
|
Path string
|
2019-07-25 13:43:44 +00:00
|
|
|
|
ReadOnly bool
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-05 13:02:46 +00:00
|
|
|
|
//HostNetworkInfo is used to return metadata about a given HostNetwork
|
|
|
|
|
type HostNetworkInfo struct {
|
|
|
|
|
Name string
|
|
|
|
|
CIDR string
|
|
|
|
|
Interface string
|
|
|
|
|
ReservedPorts string
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-07 17:58:40 +00:00
|
|
|
|
type DrainStatus string
|
|
|
|
|
|
|
|
|
|
// DrainMetadata contains information about the most recent drain operation for a given Node.
|
|
|
|
|
type DrainMetadata struct {
|
|
|
|
|
StartedAt time.Time
|
|
|
|
|
UpdatedAt time.Time
|
|
|
|
|
Status DrainStatus
|
|
|
|
|
AccessorID string
|
|
|
|
|
Meta map[string]string
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-11 23:51:18 +00:00
|
|
|
|
// Node is used to deserialize a node entry.
|
|
|
|
|
type Node struct {
|
2018-02-23 23:56:36 +00:00
|
|
|
|
ID string
|
|
|
|
|
Datacenter string
|
|
|
|
|
Name string
|
|
|
|
|
HTTPAddr string
|
|
|
|
|
TLSEnabled bool
|
|
|
|
|
Attributes map[string]string
|
|
|
|
|
Resources *Resources
|
|
|
|
|
Reserved *Resources
|
2018-09-30 00:23:41 +00:00
|
|
|
|
NodeResources *NodeResources
|
2018-09-30 01:44:55 +00:00
|
|
|
|
ReservedResources *NodeReservedResources
|
2018-02-23 23:56:36 +00:00
|
|
|
|
Links map[string]string
|
|
|
|
|
Meta map[string]string
|
|
|
|
|
NodeClass string
|
2022-04-05 20:21:15 +00:00
|
|
|
|
CgroupParent string
|
2018-02-23 23:56:36 +00:00
|
|
|
|
Drain bool
|
|
|
|
|
DrainStrategy *DrainStrategy
|
|
|
|
|
SchedulingEligibility string
|
|
|
|
|
Status string
|
|
|
|
|
StatusDescription string
|
|
|
|
|
StatusUpdatedAt int64
|
|
|
|
|
Events []*NodeEvent
|
|
|
|
|
Drivers map[string]*DriverInfo
|
2019-07-25 13:43:44 +00:00
|
|
|
|
HostVolumes map[string]*HostVolumeInfo
|
2021-11-05 13:02:46 +00:00
|
|
|
|
HostNetworks map[string]*HostNetworkInfo
|
2019-12-20 11:38:44 +00:00
|
|
|
|
CSIControllerPlugins map[string]*CSIInfo
|
|
|
|
|
CSINodePlugins map[string]*CSIInfo
|
2021-05-07 17:58:40 +00:00
|
|
|
|
LastDrain *DrainMetadata
|
2018-02-23 23:56:36 +00:00
|
|
|
|
CreateIndex uint64
|
|
|
|
|
ModifyIndex uint64
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-30 00:23:41 +00:00
|
|
|
|
type NodeResources struct {
|
|
|
|
|
Cpu NodeCpuResources
|
|
|
|
|
Memory NodeMemoryResources
|
|
|
|
|
Disk NodeDiskResources
|
|
|
|
|
Networks []*NetworkResource
|
2018-11-13 22:24:15 +00:00
|
|
|
|
Devices []*NodeDeviceResource
|
2021-10-01 00:05:10 +00:00
|
|
|
|
|
|
|
|
|
MinDynamicPort int
|
|
|
|
|
MaxDynamicPort int
|
2018-09-30 00:23:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type NodeCpuResources struct {
|
2021-03-19 03:13:30 +00:00
|
|
|
|
CpuShares int64
|
|
|
|
|
TotalCpuCores uint16
|
|
|
|
|
ReservableCpuCores []uint16
|
2018-09-30 00:23:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type NodeMemoryResources struct {
|
2018-10-16 22:34:32 +00:00
|
|
|
|
MemoryMB int64
|
2018-09-30 00:23:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type NodeDiskResources struct {
|
2018-10-16 22:34:32 +00:00
|
|
|
|
DiskMB int64
|
2018-09-30 00:23:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-30 01:44:55 +00:00
|
|
|
|
type NodeReservedResources struct {
|
|
|
|
|
Cpu NodeReservedCpuResources
|
|
|
|
|
Memory NodeReservedMemoryResources
|
|
|
|
|
Disk NodeReservedDiskResources
|
|
|
|
|
Networks NodeReservedNetworkResources
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type NodeReservedCpuResources struct {
|
2018-10-17 00:25:55 +00:00
|
|
|
|
CpuShares uint64
|
2018-09-30 01:44:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type NodeReservedMemoryResources struct {
|
|
|
|
|
MemoryMB uint64
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type NodeReservedDiskResources struct {
|
|
|
|
|
DiskMB uint64
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type NodeReservedNetworkResources struct {
|
|
|
|
|
ReservedHostPorts string
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-01 15:15:46 +00:00
|
|
|
|
type CSITopologyRequest struct {
|
|
|
|
|
Required []*CSITopology `hcl:"required"`
|
|
|
|
|
Preferred []*CSITopology `hcl:"preferred"`
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-20 11:38:44 +00:00
|
|
|
|
type CSITopology struct {
|
2022-03-01 15:15:46 +00:00
|
|
|
|
Segments map[string]string `hcl:"segments"`
|
2019-12-20 11:38:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// CSINodeInfo is the fingerprinted data from a CSI Plugin that is specific to
|
|
|
|
|
// the Node API.
|
|
|
|
|
type CSINodeInfo struct {
|
2022-02-23 20:22:29 +00:00
|
|
|
|
ID string
|
|
|
|
|
MaxVolumes int64
|
|
|
|
|
AccessibleTopology *CSITopology
|
|
|
|
|
|
|
|
|
|
// RequiresNodeStageVolume indicates whether the client should Stage/Unstage
|
|
|
|
|
// volumes on this node.
|
2019-12-20 11:38:44 +00:00
|
|
|
|
RequiresNodeStageVolume bool
|
2022-02-23 20:22:29 +00:00
|
|
|
|
|
|
|
|
|
// SupportsStats indicates plugin support for GET_VOLUME_STATS
|
|
|
|
|
SupportsStats bool
|
|
|
|
|
|
|
|
|
|
// SupportsExpand indicates plugin support for EXPAND_VOLUME
|
|
|
|
|
SupportsExpand bool
|
|
|
|
|
|
|
|
|
|
// SupportsCondition indicates plugin support for VOLUME_CONDITION
|
|
|
|
|
SupportsCondition bool
|
2019-12-20 11:38:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// CSIControllerInfo is the fingerprinted data from a CSI Plugin that is specific to
|
|
|
|
|
// the Controller API.
|
|
|
|
|
type CSIControllerInfo struct {
|
2022-02-23 20:22:29 +00:00
|
|
|
|
// SupportsCreateDelete indicates plugin support for CREATE_DELETE_VOLUME
|
|
|
|
|
SupportsCreateDelete bool
|
|
|
|
|
|
|
|
|
|
// SupportsPublishVolume is true when the controller implements the
|
|
|
|
|
// methods required to attach and detach volumes. If this is false Nomad
|
|
|
|
|
// should skip the controller attachment flow.
|
|
|
|
|
SupportsAttachDetach bool
|
|
|
|
|
|
|
|
|
|
// SupportsListVolumes is true when the controller implements the
|
|
|
|
|
// ListVolumes RPC. NOTE: This does not guarantee that attached nodes will
|
|
|
|
|
// be returned unless SupportsListVolumesAttachedNodes is also true.
|
|
|
|
|
SupportsListVolumes bool
|
|
|
|
|
|
|
|
|
|
// SupportsGetCapacity indicates plugin support for GET_CAPACITY
|
|
|
|
|
SupportsGetCapacity bool
|
|
|
|
|
|
|
|
|
|
// SupportsCreateDeleteSnapshot indicates plugin support for
|
|
|
|
|
// CREATE_DELETE_SNAPSHOT
|
|
|
|
|
SupportsCreateDeleteSnapshot bool
|
|
|
|
|
|
|
|
|
|
// SupportsListSnapshots indicates plugin support for LIST_SNAPSHOTS
|
|
|
|
|
SupportsListSnapshots bool
|
|
|
|
|
|
|
|
|
|
// SupportsClone indicates plugin support for CLONE_VOLUME
|
|
|
|
|
SupportsClone bool
|
|
|
|
|
|
|
|
|
|
// SupportsReadOnlyAttach is set to true when the controller returns the
|
|
|
|
|
// ATTACH_READONLY capability.
|
|
|
|
|
SupportsReadOnlyAttach bool
|
|
|
|
|
|
|
|
|
|
// SupportsExpand indicates plugin support for EXPAND_VOLUME
|
|
|
|
|
SupportsExpand bool
|
|
|
|
|
|
|
|
|
|
// SupportsListVolumesAttachedNodes indicates whether the plugin will
|
|
|
|
|
// return attached nodes data when making ListVolume RPCs (plugin support
|
|
|
|
|
// for LIST_VOLUMES_PUBLISHED_NODES)
|
2019-12-20 11:38:44 +00:00
|
|
|
|
SupportsListVolumesAttachedNodes bool
|
2022-02-23 20:22:29 +00:00
|
|
|
|
|
|
|
|
|
// SupportsCondition indicates plugin support for VOLUME_CONDITION
|
|
|
|
|
SupportsCondition bool
|
|
|
|
|
|
|
|
|
|
// SupportsGet indicates plugin support for GET_VOLUME
|
|
|
|
|
SupportsGet bool
|
2019-12-20 11:38:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// CSIInfo is the current state of a single CSI Plugin. This is updated regularly
|
|
|
|
|
// as plugin health changes on the node.
|
|
|
|
|
type CSIInfo struct {
|
|
|
|
|
PluginID string
|
2020-08-27 21:20:00 +00:00
|
|
|
|
AllocID string
|
2019-12-20 11:38:44 +00:00
|
|
|
|
Healthy bool
|
|
|
|
|
HealthDescription string
|
|
|
|
|
UpdateTime time.Time
|
|
|
|
|
RequiresControllerPlugin bool
|
|
|
|
|
RequiresTopologies bool
|
|
|
|
|
ControllerInfo *CSIControllerInfo `json:",omitempty"`
|
|
|
|
|
NodeInfo *CSINodeInfo `json:",omitempty"`
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-23 23:56:36 +00:00
|
|
|
|
// DrainStrategy describes a Node's drain behavior.
|
|
|
|
|
type DrainStrategy struct {
|
|
|
|
|
// DrainSpec is the user declared drain specification
|
|
|
|
|
DrainSpec
|
2018-03-01 00:25:56 +00:00
|
|
|
|
|
2018-03-12 20:44:33 +00:00
|
|
|
|
// ForceDeadline is the deadline time for the drain after which drains will
|
|
|
|
|
// be forced
|
|
|
|
|
ForceDeadline time.Time
|
2019-11-13 22:26:35 +00:00
|
|
|
|
|
|
|
|
|
// StartedAt is the time the drain process started
|
|
|
|
|
StartedAt time.Time
|
2018-02-23 23:56:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// DrainSpec describes a Node's drain behavior.
|
|
|
|
|
type DrainSpec struct {
|
|
|
|
|
// Deadline is the duration after StartTime when the remaining
|
|
|
|
|
// allocations on a draining Node should be told to stop.
|
|
|
|
|
Deadline time.Duration
|
|
|
|
|
|
|
|
|
|
// IgnoreSystemJobs allows systems jobs to remain on the node even though it
|
|
|
|
|
// has been marked for draining.
|
|
|
|
|
IgnoreSystemJobs bool
|
2015-09-14 02:55:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-28 21:01:54 +00:00
|
|
|
|
func (d *DrainStrategy) Equal(o *DrainStrategy) bool {
|
|
|
|
|
if d == nil || o == nil {
|
|
|
|
|
return d == o
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if d.ForceDeadline != o.ForceDeadline {
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
if d.Deadline != o.Deadline {
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
if d.IgnoreSystemJobs != o.IgnoreSystemJobs {
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// String returns a human readable version of the drain strategy.
|
|
|
|
|
func (d *DrainStrategy) String() string {
|
|
|
|
|
if d.IgnoreSystemJobs {
|
|
|
|
|
return fmt.Sprintf("drain ignoring system jobs and deadline at %s", d.ForceDeadline)
|
|
|
|
|
}
|
|
|
|
|
return fmt.Sprintf("drain with deadline at %s", d.ForceDeadline)
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-08 14:34:08 +00:00
|
|
|
|
const (
|
2018-03-14 00:59:37 +00:00
|
|
|
|
NodeEventSubsystemDrain = "Drain"
|
|
|
|
|
NodeEventSubsystemDriver = "Driver"
|
|
|
|
|
NodeEventSubsystemHeartbeat = "Heartbeat"
|
|
|
|
|
NodeEventSubsystemCluster = "Cluster"
|
2018-03-08 14:34:08 +00:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// NodeEvent is a single unit representing a node’s state change
|
|
|
|
|
type NodeEvent struct {
|
2018-03-14 01:04:55 +00:00
|
|
|
|
Message string
|
|
|
|
|
Subsystem string
|
|
|
|
|
Details map[string]string
|
2018-03-27 17:22:29 +00:00
|
|
|
|
Timestamp time.Time
|
2018-03-08 14:34:08 +00:00
|
|
|
|
CreateIndex uint64
|
|
|
|
|
}
|
|
|
|
|
|
2016-05-22 03:05:51 +00:00
|
|
|
|
// HostStats represents resource usage stats of the host running a Nomad client
|
|
|
|
|
type HostStats struct {
|
2016-06-10 21:14:33 +00:00
|
|
|
|
Memory *HostMemoryStats
|
|
|
|
|
CPU []*HostCPUStats
|
|
|
|
|
DiskStats []*HostDiskStats
|
2018-11-13 20:35:42 +00:00
|
|
|
|
DeviceStats []*DeviceGroupStats
|
2016-06-10 21:14:33 +00:00
|
|
|
|
Uptime uint64
|
|
|
|
|
CPUTicksConsumed float64
|
2016-05-22 03:05:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type HostMemoryStats struct {
|
|
|
|
|
Total uint64
|
|
|
|
|
Available uint64
|
|
|
|
|
Used uint64
|
|
|
|
|
Free uint64
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type HostCPUStats struct {
|
|
|
|
|
CPU string
|
|
|
|
|
User float64
|
|
|
|
|
System float64
|
|
|
|
|
Idle float64
|
|
|
|
|
}
|
|
|
|
|
|
2016-05-22 10:46:49 +00:00
|
|
|
|
type HostDiskStats struct {
|
|
|
|
|
Device string
|
|
|
|
|
Mountpoint string
|
|
|
|
|
Size uint64
|
|
|
|
|
Used uint64
|
|
|
|
|
Available uint64
|
|
|
|
|
UsedPercent float64
|
|
|
|
|
InodesUsedPercent float64
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-13 20:35:42 +00:00
|
|
|
|
// DeviceGroupStats contains statistics for each device of a particular
|
|
|
|
|
// device group, identified by the vendor, type and name of the device.
|
|
|
|
|
type DeviceGroupStats struct {
|
|
|
|
|
Vendor string
|
|
|
|
|
Type string
|
|
|
|
|
Name string
|
|
|
|
|
|
|
|
|
|
// InstanceStats is a mapping of each device ID to its statistics.
|
|
|
|
|
InstanceStats map[string]*DeviceStats
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// DeviceStats is the statistics for an individual device
|
|
|
|
|
type DeviceStats struct {
|
|
|
|
|
// Summary exposes a single summary metric that should be the most
|
|
|
|
|
// informative to users.
|
|
|
|
|
Summary *StatValue
|
|
|
|
|
|
|
|
|
|
// Stats contains the verbose statistics for the device.
|
|
|
|
|
Stats *StatObject
|
|
|
|
|
|
|
|
|
|
// Timestamp is the time the statistics were collected.
|
|
|
|
|
Timestamp time.Time
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// StatObject is a collection of statistics either exposed at the top
|
|
|
|
|
// level or via nested StatObjects.
|
|
|
|
|
type StatObject struct {
|
|
|
|
|
// Nested is a mapping of object name to a nested stats object.
|
|
|
|
|
Nested map[string]*StatObject
|
|
|
|
|
|
|
|
|
|
// Attributes is a mapping of statistic name to its value.
|
|
|
|
|
Attributes map[string]*StatValue
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// StatValue exposes the values of a particular statistic. The value may be of
|
|
|
|
|
// type float, integer, string or boolean. Numeric types can be exposed as a
|
|
|
|
|
// single value or as a fraction.
|
|
|
|
|
type StatValue struct {
|
|
|
|
|
// FloatNumeratorVal exposes a floating point value. If denominator is set
|
|
|
|
|
// it is assumed to be a fractional value, otherwise it is a scalar.
|
|
|
|
|
FloatNumeratorVal *float64 `json:",omitempty"`
|
|
|
|
|
FloatDenominatorVal *float64 `json:",omitempty"`
|
|
|
|
|
|
|
|
|
|
// IntNumeratorVal exposes a int value. If denominator is set it is assumed
|
|
|
|
|
// to be a fractional value, otherwise it is a scalar.
|
|
|
|
|
IntNumeratorVal *int64 `json:",omitempty"`
|
|
|
|
|
IntDenominatorVal *int64 `json:",omitempty"`
|
|
|
|
|
|
|
|
|
|
// StringVal exposes a string value. These are likely annotations.
|
|
|
|
|
StringVal *string `json:",omitempty"`
|
|
|
|
|
|
|
|
|
|
// BoolVal exposes a boolean statistic.
|
|
|
|
|
BoolVal *bool `json:",omitempty"`
|
|
|
|
|
|
|
|
|
|
// Unit gives the unit type: °F, %, MHz, MB, etc.
|
|
|
|
|
Unit string `json:",omitempty"`
|
|
|
|
|
|
|
|
|
|
// Desc provides a human readable description of the statistic.
|
|
|
|
|
Desc string `json:",omitempty"`
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-14 16:51:50 +00:00
|
|
|
|
func (v *StatValue) String() string {
|
|
|
|
|
switch {
|
2020-02-27 02:24:31 +00:00
|
|
|
|
case v == nil:
|
|
|
|
|
return "<none>"
|
2018-11-14 16:51:50 +00:00
|
|
|
|
case v.BoolVal != nil:
|
|
|
|
|
return strconv.FormatBool(*v.BoolVal)
|
|
|
|
|
case v.StringVal != nil:
|
|
|
|
|
return *v.StringVal
|
|
|
|
|
case v.FloatNumeratorVal != nil:
|
2019-01-18 18:36:49 +00:00
|
|
|
|
str := formatFloat(*v.FloatNumeratorVal, 3)
|
2018-11-14 16:51:50 +00:00
|
|
|
|
if v.FloatDenominatorVal != nil {
|
2019-01-18 18:36:49 +00:00
|
|
|
|
str += " / " + formatFloat(*v.FloatDenominatorVal, 3)
|
2018-11-14 16:51:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if v.Unit != "" {
|
|
|
|
|
str += " " + v.Unit
|
|
|
|
|
}
|
|
|
|
|
return str
|
|
|
|
|
case v.IntNumeratorVal != nil:
|
|
|
|
|
str := strconv.FormatInt(*v.IntNumeratorVal, 10)
|
|
|
|
|
if v.IntDenominatorVal != nil {
|
|
|
|
|
str += " / " + strconv.FormatInt(*v.IntDenominatorVal, 10)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if v.Unit != "" {
|
|
|
|
|
str += " " + v.Unit
|
|
|
|
|
}
|
|
|
|
|
return str
|
|
|
|
|
default:
|
|
|
|
|
return "<unknown>"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-14 02:55:47 +00:00
|
|
|
|
// NodeListStub is a subset of information returned during
|
|
|
|
|
// node list operations.
|
|
|
|
|
type NodeListStub struct {
|
2018-02-27 22:00:55 +00:00
|
|
|
|
Address string
|
|
|
|
|
ID string
|
|
|
|
|
Datacenter string
|
|
|
|
|
Name string
|
|
|
|
|
NodeClass string
|
|
|
|
|
Version string
|
|
|
|
|
Drain bool
|
|
|
|
|
SchedulingEligibility string
|
|
|
|
|
Status string
|
|
|
|
|
StatusDescription string
|
2018-05-09 15:21:54 +00:00
|
|
|
|
Drivers map[string]*DriverInfo
|
2020-10-09 05:21:41 +00:00
|
|
|
|
NodeResources *NodeResources `json:",omitempty"`
|
|
|
|
|
ReservedResources *NodeReservedResources `json:",omitempty"`
|
2021-05-07 17:58:40 +00:00
|
|
|
|
LastDrain *DrainMetadata
|
2018-02-27 22:00:55 +00:00
|
|
|
|
CreateIndex uint64
|
|
|
|
|
ModifyIndex uint64
|
2015-09-11 23:51:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-09-17 19:40:51 +00:00
|
|
|
|
// NodeIndexSort reverse sorts nodes by CreateIndex
|
|
|
|
|
type NodeIndexSort []*NodeListStub
|
|
|
|
|
|
|
|
|
|
func (n NodeIndexSort) Len() int {
|
|
|
|
|
return len(n)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (n NodeIndexSort) Less(i, j int) bool {
|
|
|
|
|
return n[i].CreateIndex > n[j].CreateIndex
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (n NodeIndexSort) Swap(i, j int) {
|
|
|
|
|
n[i], n[j] = n[j], n[i]
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-11 23:51:18 +00:00
|
|
|
|
// nodeEvalResponse is used to decode a force-eval.
|
|
|
|
|
type nodeEvalResponse struct {
|
|
|
|
|
EvalID string
|
|
|
|
|
}
|
2015-11-09 16:54:18 +00:00
|
|
|
|
|
|
|
|
|
// AllocationSort reverse sorts allocs by CreateIndex.
|
|
|
|
|
type AllocationSort []*Allocation
|
|
|
|
|
|
|
|
|
|
func (a AllocationSort) Len() int {
|
|
|
|
|
return len(a)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (a AllocationSort) Less(i, j int) bool {
|
|
|
|
|
return a[i].CreateIndex > a[j].CreateIndex
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (a AllocationSort) Swap(i, j int) {
|
|
|
|
|
a[i], a[j] = a[j], a[i]
|
|
|
|
|
}
|