1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
|
package app
import (
"errors"
"fmt"
"io/ioutil"
"log"
"math/rand"
"net/http"
"os"
"time"
proto "github.com/gogo/protobuf/proto"
"github.com/mesos/mesos-go/api/v1/lib"
"github.com/mesos/mesos-go/api/v1/lib/backoff"
"github.com/mesos/mesos-go/api/v1/lib/httpcli"
"github.com/mesos/mesos-go/api/v1/lib/httpcli/httpsched"
"github.com/mesos/mesos-go/api/v1/lib/resources"
"github.com/mesos/mesos-go/api/v1/lib/scheduler/calls"
)
func prepareExecutorInfo(
execBinary, execImage string,
server server,
wantsResources mesos.Resources,
jobRestartDelay time.Duration,
metricsAPI *metricsAPI,
) (*mesos.ExecutorInfo, error) {
if execImage != "" {
// Create mesos custom executor
return &mesos.ExecutorInfo{
Type: mesos.ExecutorInfo_CUSTOM,
ExecutorID: mesos.ExecutorID{Value: "default"},
Name: proto.String("Test Executor"),
Command: &mesos.CommandInfo{
Shell: func() *bool { x := false; return &x }(),
},
Container: &mesos.ContainerInfo{
Type: mesos.ContainerInfo_DOCKER.Enum(),
Docker: &mesos.ContainerInfo_DockerInfo{
Image: execImage,
ForcePullImage: func() *bool { x := true; return &x }(),
Parameters: []mesos.Parameter{
{
Key: "entrypoint",
Value: execBinary,
}}}},
Resources: wantsResources,
}, nil
} else if execBinary != "" {
log.Println("No executor image specified, will serve executor binary from built-in HTTP server")
listener, iport, err := newListener(server)
if err != nil {
return nil, err
}
server.port = iport // we're just working with a copy of server, so this is OK
var (
mux = http.NewServeMux()
executorUris = []mesos.CommandInfo_URI{}
uri, executorCmd, err2 = serveExecutorArtifact(server, execBinary, mux)
executorCommand = fmt.Sprintf("./%s", executorCmd)
)
if err2 != nil {
return nil, err2
}
wrapper := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
metricsAPI.artifactDownloads()
mux.ServeHTTP(w, r)
})
executorUris = append(executorUris, mesos.CommandInfo_URI{Value: uri, Executable: proto.Bool(true)})
go forever("artifact-server", jobRestartDelay, metricsAPI.jobStartCount, func() error { return http.Serve(listener, wrapper) })
log.Println("Serving executor artifacts...")
// Create mesos custom executor
return &mesos.ExecutorInfo{
Type: mesos.ExecutorInfo_CUSTOM,
ExecutorID: mesos.ExecutorID{Value: "default"},
Name: proto.String("Test Executor"),
Command: &mesos.CommandInfo{
Value: proto.String(executorCommand),
URIs: executorUris,
},
Resources: wantsResources,
}, nil
}
return nil, errors.New("must specify an executor binary or image")
}
func buildWantsTaskResources(config Config) (r mesos.Resources) {
r.Add(
resources.NewCPUs(config.taskCPU).Resource,
resources.NewMemory(config.taskMemory).Resource,
)
log.Println("wants-task-resources = " + r.String())
return
}
func buildWantsExecutorResources(config Config) (r mesos.Resources) {
r.Add(
resources.NewCPUs(config.execCPU).Resource,
resources.NewMemory(config.execMemory).Resource,
)
log.Println("wants-executor-resources = " + r.String())
return
}
func buildHTTPSched(cfg Config, creds credentials) calls.Caller {
var authConfigOpt httpcli.ConfigOpt
// TODO(jdef) make this auth-mode configuration more pluggable
if cfg.authMode == AuthModeBasic {
log.Println("configuring HTTP Basic authentication")
// TODO(jdef) this needs testing once mesos 0.29 is available
authConfigOpt = httpcli.BasicAuth(creds.username, creds.password)
}
cli := httpcli.New(
httpcli.Endpoint(cfg.url),
httpcli.Codec(cfg.codec.Codec),
httpcli.Do(httpcli.With(
authConfigOpt,
httpcli.Timeout(cfg.timeout),
)),
)
if cfg.compression {
// TODO(jdef) experimental; currently released versions of Mesos will accept this
// header but will not send back compressed data due to flushing issues.
log.Println("compression enabled")
cli.With(httpcli.RequestOptions(httpcli.Header("Accept-Encoding", "gzip")))
}
return httpsched.NewCaller(cli)
}
func buildFrameworkInfo(cfg Config) *mesos.FrameworkInfo {
failoverTimeout := cfg.failoverTimeout.Seconds()
frameworkInfo := &mesos.FrameworkInfo{
User: cfg.user,
Name: cfg.name,
Checkpoint: &cfg.checkpoint,
}
if cfg.failoverTimeout > 0 {
frameworkInfo.FailoverTimeout = &failoverTimeout
}
if cfg.role != "" {
frameworkInfo.Role = &cfg.role
}
if cfg.principal != "" {
frameworkInfo.Principal = &cfg.principal
}
if cfg.hostname != "" {
frameworkInfo.Hostname = &cfg.hostname
}
if len(cfg.labels) > 0 {
log.Println("using labels:", cfg.labels)
frameworkInfo.Labels = &mesos.Labels{Labels: cfg.labels}
}
if cfg.gpuClusterCompat {
frameworkInfo.Capabilities = append(frameworkInfo.Capabilities,
mesos.FrameworkInfo_Capability{Type: mesos.FrameworkInfo_Capability_GPU_RESOURCES},
)
}
return frameworkInfo
}
func loadCredentials(userConfig credentials) (result credentials, err error) {
result = userConfig
if result.password != "" {
// this is the path to a file containing the password
_, err = os.Stat(result.password)
if err != nil {
return
}
var f *os.File
f, err = os.Open(result.password)
if err != nil {
return
}
defer f.Close()
var bytes []byte
bytes, err = ioutil.ReadAll(f)
if err != nil {
return
}
result.password = string(bytes)
}
return
}
func newInternalState(cfg Config, shutdown func()) (*internalState, error) {
metricsAPI := initMetrics(cfg)
executorInfo, err := prepareExecutorInfo(
cfg.executor,
cfg.execImage,
cfg.server,
buildWantsExecutorResources(cfg),
cfg.jobRestartDelay,
metricsAPI,
)
if err != nil {
return nil, err
}
creds, err := loadCredentials(cfg.credentials)
if err != nil {
return nil, err
}
state := &internalState{
config: cfg,
totalTasks: cfg.tasks,
reviveTokens: backoff.BurstNotifier(cfg.reviveBurst, cfg.reviveWait, cfg.reviveWait, nil),
wantsTaskResources: buildWantsTaskResources(cfg),
executor: executorInfo,
metricsAPI: metricsAPI,
cli: buildHTTPSched(cfg, creds),
random: rand.New(rand.NewSource(time.Now().Unix())),
shutdown: shutdown,
}
return state, nil
}
type internalState struct {
tasksLaunched int
tasksFinished int
totalTasks int
role string
executor *mesos.ExecutorInfo
cli calls.Caller
config Config
wantsTaskResources mesos.Resources
reviveTokens <-chan struct{}
metricsAPI *metricsAPI
err error
shutdown func()
random *rand.Rand
}
|