1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
17 "git.arvados.org/arvados.git/lib/cloud"
18 "git.arvados.org/arvados.git/lib/dispatchcloud/container"
19 "git.arvados.org/arvados.git/lib/dispatchcloud/scheduler"
20 "git.arvados.org/arvados.git/lib/dispatchcloud/sshexecutor"
21 "git.arvados.org/arvados.git/lib/dispatchcloud/worker"
22 "git.arvados.org/arvados.git/sdk/go/arvados"
23 "git.arvados.org/arvados.git/sdk/go/auth"
24 "git.arvados.org/arvados.git/sdk/go/ctxlog"
25 "git.arvados.org/arvados.git/sdk/go/httpserver"
26 "github.com/julienschmidt/httprouter"
27 "github.com/prometheus/client_golang/prometheus"
28 "github.com/prometheus/client_golang/prometheus/promhttp"
29 "github.com/sirupsen/logrus"
30 "golang.org/x/crypto/ssh"
34 defaultPollInterval = time.Second
35 defaultStaleLockTimeout = time.Minute
41 Instances() []worker.InstanceView
42 SetIdleBehavior(cloud.InstanceID, worker.IdleBehavior) error
43 KillInstance(id cloud.InstanceID, reason string) error
47 type dispatcher struct {
48 Cluster *arvados.Cluster
49 Context context.Context
50 ArvClient *arvados.Client
52 Registry *prometheus.Registry
53 InstanceSetID cloud.InstanceSetID
55 logger logrus.FieldLogger
56 instanceSet cloud.InstanceSet
58 queue scheduler.ContainerQueue
59 httpHandler http.Handler
67 // Start starts the dispatcher. Start can be called multiple times
68 // with no ill effect.
69 func (disp *dispatcher) Start() {
70 disp.setupOnce.Do(disp.setup)
73 // ServeHTTP implements service.Handler.
74 func (disp *dispatcher) ServeHTTP(w http.ResponseWriter, r *http.Request) {
76 disp.httpHandler.ServeHTTP(w, r)
79 // CheckHealth implements service.Handler.
80 func (disp *dispatcher) CheckHealth() error {
82 return disp.pool.CheckHealth()
85 // Done implements service.Handler.
86 func (disp *dispatcher) Done() <-chan struct{} {
90 // Stop dispatching containers and release resources. Typically used
92 func (disp *dispatcher) Close() {
95 case disp.stop <- struct{}{}:
101 // Make a worker.Executor for the given instance.
102 func (disp *dispatcher) newExecutor(inst cloud.Instance) worker.Executor {
103 exr := sshexecutor.New(inst)
104 exr.SetTargetPort(disp.Cluster.Containers.CloudVMs.SSHPort)
105 exr.SetSigners(disp.sshKey)
109 func (disp *dispatcher) typeChooser(ctr *arvados.Container) (arvados.InstanceType, error) {
110 return ChooseInstanceType(disp.Cluster, ctr)
113 func (disp *dispatcher) setup() {
118 func (disp *dispatcher) initialize() {
119 disp.logger = ctxlog.FromContext(disp.Context)
121 disp.ArvClient.AuthToken = disp.AuthToken
123 if disp.InstanceSetID == "" {
124 if strings.HasPrefix(disp.AuthToken, "v2/") {
125 disp.InstanceSetID = cloud.InstanceSetID(strings.Split(disp.AuthToken, "/")[1])
127 // Use some other string unique to this token
128 // that doesn't reveal the token itself.
129 disp.InstanceSetID = cloud.InstanceSetID(fmt.Sprintf("%x", md5.Sum([]byte(disp.AuthToken))))
132 disp.stop = make(chan struct{}, 1)
133 disp.stopped = make(chan struct{})
135 if key, err := ssh.ParsePrivateKey([]byte(disp.Cluster.Containers.DispatchPrivateKey)); err != nil {
136 disp.logger.Fatalf("error parsing configured Containers.DispatchPrivateKey: %s", err)
141 instanceSet, err := newInstanceSet(disp.Cluster, disp.InstanceSetID, disp.logger, disp.Registry)
143 disp.logger.Fatalf("error initializing driver: %s", err)
145 disp.instanceSet = instanceSet
146 disp.pool = worker.NewPool(disp.logger, disp.ArvClient, disp.Registry, disp.InstanceSetID, disp.instanceSet, disp.newExecutor, disp.sshKey.PublicKey(), disp.Cluster)
147 disp.queue = container.NewQueue(disp.logger, disp.Registry, disp.typeChooser, disp.ArvClient)
149 if disp.Cluster.ManagementToken == "" {
150 disp.httpHandler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
151 http.Error(w, "Management API authentication is not configured", http.StatusForbidden)
154 mux := httprouter.New()
155 mux.HandlerFunc("GET", "/arvados/v1/dispatch/containers", disp.apiContainers)
156 mux.HandlerFunc("POST", "/arvados/v1/dispatch/containers/kill", disp.apiContainerKill)
157 mux.HandlerFunc("GET", "/arvados/v1/dispatch/instances", disp.apiInstances)
158 mux.HandlerFunc("POST", "/arvados/v1/dispatch/instances/hold", disp.apiInstanceHold)
159 mux.HandlerFunc("POST", "/arvados/v1/dispatch/instances/drain", disp.apiInstanceDrain)
160 mux.HandlerFunc("POST", "/arvados/v1/dispatch/instances/run", disp.apiInstanceRun)
161 mux.HandlerFunc("POST", "/arvados/v1/dispatch/instances/kill", disp.apiInstanceKill)
162 metricsH := promhttp.HandlerFor(disp.Registry, promhttp.HandlerOpts{
163 ErrorLog: disp.logger,
165 mux.Handler("GET", "/metrics", metricsH)
166 mux.Handler("GET", "/metrics.json", metricsH)
167 disp.httpHandler = auth.RequireLiteralToken(disp.Cluster.ManagementToken, mux)
171 func (disp *dispatcher) run() {
172 defer close(disp.stopped)
173 defer disp.instanceSet.Stop()
174 defer disp.pool.Stop()
176 staleLockTimeout := time.Duration(disp.Cluster.Containers.StaleLockTimeout)
177 if staleLockTimeout == 0 {
178 staleLockTimeout = defaultStaleLockTimeout
180 pollInterval := time.Duration(disp.Cluster.Containers.CloudVMs.PollInterval)
181 if pollInterval <= 0 {
182 pollInterval = defaultPollInterval
184 sched := scheduler.New(disp.Context, disp.queue, disp.pool, disp.Registry, staleLockTimeout, pollInterval)
191 // Management API: all active and queued containers.
192 func (disp *dispatcher) apiContainers(w http.ResponseWriter, r *http.Request) {
194 Items []container.QueueEnt `json:"items"`
196 qEntries, _ := disp.queue.Entries()
197 for _, ent := range qEntries {
198 resp.Items = append(resp.Items, ent)
200 json.NewEncoder(w).Encode(resp)
203 // Management API: all active instances (cloud VMs).
204 func (disp *dispatcher) apiInstances(w http.ResponseWriter, r *http.Request) {
206 Items []worker.InstanceView `json:"items"`
208 resp.Items = disp.pool.Instances()
209 json.NewEncoder(w).Encode(resp)
212 // Management API: set idle behavior to "hold" for specified instance.
213 func (disp *dispatcher) apiInstanceHold(w http.ResponseWriter, r *http.Request) {
214 disp.apiInstanceIdleBehavior(w, r, worker.IdleBehaviorHold)
217 // Management API: set idle behavior to "drain" for specified instance.
218 func (disp *dispatcher) apiInstanceDrain(w http.ResponseWriter, r *http.Request) {
219 disp.apiInstanceIdleBehavior(w, r, worker.IdleBehaviorDrain)
222 // Management API: set idle behavior to "run" for specified instance.
223 func (disp *dispatcher) apiInstanceRun(w http.ResponseWriter, r *http.Request) {
224 disp.apiInstanceIdleBehavior(w, r, worker.IdleBehaviorRun)
227 // Management API: shutdown/destroy specified instance now.
228 func (disp *dispatcher) apiInstanceKill(w http.ResponseWriter, r *http.Request) {
229 id := cloud.InstanceID(r.FormValue("instance_id"))
231 httpserver.Error(w, "instance_id parameter not provided", http.StatusBadRequest)
234 err := disp.pool.KillInstance(id, "via management API: "+r.FormValue("reason"))
236 httpserver.Error(w, err.Error(), http.StatusNotFound)
241 // Management API: send SIGTERM to specified container's crunch-run
243 func (disp *dispatcher) apiContainerKill(w http.ResponseWriter, r *http.Request) {
244 uuid := r.FormValue("container_uuid")
246 httpserver.Error(w, "container_uuid parameter not provided", http.StatusBadRequest)
249 if !disp.pool.KillContainer(uuid, "via management API: "+r.FormValue("reason")) {
250 httpserver.Error(w, "container not found", http.StatusNotFound)
255 func (disp *dispatcher) apiInstanceIdleBehavior(w http.ResponseWriter, r *http.Request, want worker.IdleBehavior) {
256 id := cloud.InstanceID(r.FormValue("instance_id"))
258 httpserver.Error(w, "instance_id parameter not provided", http.StatusBadRequest)
261 err := disp.pool.SetIdleBehavior(id, want)
263 httpserver.Error(w, err.Error(), http.StatusNotFound)