open-nomad/nomad/util.go

160 lines
3.5 KiB
Go
Raw Normal View History

2015-06-01 15:49:10 +00:00
package nomad
import (
2015-06-04 10:33:12 +00:00
"fmt"
2015-06-05 22:14:08 +00:00
"math/rand"
2015-06-03 11:35:48 +00:00
"net"
2015-06-01 15:49:10 +00:00
"os"
"path/filepath"
2015-06-03 10:26:50 +00:00
"runtime"
"strconv"
2015-06-03 11:35:48 +00:00
2017-09-07 23:56:15 +00:00
version "github.com/hashicorp/go-version"
2015-06-03 11:35:48 +00:00
"github.com/hashicorp/serf/serf"
2015-06-01 15:49:10 +00:00
)
// ensurePath is used to make sure a path exists
func ensurePath(path string, dir bool) error {
if !dir {
path = filepath.Dir(path)
}
return os.MkdirAll(path, 0755)
}
2015-06-03 10:26:50 +00:00
2015-08-20 22:29:30 +00:00
// RuntimeStats is used to return various runtime information
func RuntimeStats() map[string]string {
2015-06-03 10:26:50 +00:00
return map[string]string{
"kernel.name": runtime.GOOS,
"arch": runtime.GOARCH,
"version": runtime.Version(),
"max_procs": strconv.FormatInt(int64(runtime.GOMAXPROCS(0)), 10),
"goroutines": strconv.FormatInt(int64(runtime.NumGoroutine()), 10),
"cpu_count": strconv.FormatInt(int64(runtime.NumCPU()), 10),
2015-06-03 10:26:50 +00:00
}
}
2015-06-03 11:35:48 +00:00
// serverParts is used to return the parts of a server role
type serverParts struct {
Name string
Region string
Datacenter string
Port int
Bootstrap bool
Expect int
MajorVersion int
MinorVersion int
2017-09-07 23:56:15 +00:00
Build version.Version
Addr net.Addr
2017-09-07 23:56:15 +00:00
Status serf.MemberStatus
2015-06-03 11:35:48 +00:00
}
2015-06-04 10:33:12 +00:00
func (s *serverParts) String() string {
return fmt.Sprintf("%s (Addr: %s) (DC: %s)",
s.Name, s.Addr, s.Datacenter)
}
2015-06-03 11:35:48 +00:00
// Returns if a member is a Nomad server. Returns a boolean,
// and a struct with the various important components
func isNomadServer(m serf.Member) (bool, *serverParts) {
if m.Tags["role"] != "nomad" {
return false, nil
}
region := m.Tags["region"]
datacenter := m.Tags["dc"]
_, bootstrap := m.Tags["bootstrap"]
expect := 0
expect_str, ok := m.Tags["expect"]
var err error
if ok {
expect, err = strconv.Atoi(expect_str)
if err != nil {
return false, nil
}
}
port_str := m.Tags["port"]
port, err := strconv.Atoi(port_str)
if err != nil {
return false, nil
}
2017-09-07 23:56:15 +00:00
build_version, err := version.NewVersion(m.Tags["build"])
if err != nil {
return false, nil
}
// The "vsn" tag was Version, which is now the MajorVersion number.
majorVersionStr := m.Tags["vsn"]
majorVersion, err := strconv.Atoi(majorVersionStr)
2015-06-03 11:35:48 +00:00
if err != nil {
return false, nil
}
// To keep some semblance of convention, "mvn" is now the "Minor
// Version Number."
minorVersionStr := m.Tags["mvn"]
minorVersion, err := strconv.Atoi(minorVersionStr)
if err != nil {
minorVersion = 0
}
2015-06-03 11:35:48 +00:00
addr := &net.TCPAddr{IP: m.Addr, Port: port}
parts := &serverParts{
Name: m.Name,
Region: region,
Datacenter: datacenter,
Port: port,
Bootstrap: bootstrap,
Expect: expect,
Addr: addr,
MajorVersion: majorVersion,
MinorVersion: minorVersion,
2017-09-07 23:56:15 +00:00
Build: *build_version,
Status: m.Status,
2015-06-03 11:35:48 +00:00
}
return true, parts
}
2015-06-05 22:14:08 +00:00
2017-09-07 23:56:15 +00:00
// ServersMeetMinimumVersion returns whether the given alive servers are at least on the
// given Nomad version
func ServersMeetMinimumVersion(members []serf.Member, minVersion *version.Version) bool {
for _, member := range members {
if valid, parts := isNomadServer(member); valid && parts.Status == serf.StatusAlive {
if parts.Build.LessThan(minVersion) {
return false
}
}
}
return true
}
2015-07-24 00:30:07 +00:00
// shuffleStrings randomly shuffles the list of strings
func shuffleStrings(list []string) {
for i := range list {
j := rand.Intn(i + 1)
list[i], list[j] = list[j], list[i]
}
}
2015-08-05 00:13:40 +00:00
// maxUint64 returns the maximum value
2017-10-13 21:36:02 +00:00
func maxUint64(inputs ...uint64) uint64 {
l := len(inputs)
if l == 0 {
return 0
} else if l == 1 {
return inputs[0]
2015-08-05 00:13:40 +00:00
}
2017-10-13 21:36:02 +00:00
max := inputs[0]
for i := 1; i < l; i++ {
cur := inputs[i]
if cur > max {
max = cur
}
}
return max
2015-08-05 00:13:40 +00:00
}