3 // Dispatcher service for Crunch that submits containers to the slurm queue.
9 "git.curoverse.com/arvados.git/sdk/go/arvados"
10 "git.curoverse.com/arvados.git/sdk/go/arvadosclient"
11 "git.curoverse.com/arvados.git/sdk/go/config"
12 "git.curoverse.com/arvados.git/sdk/go/dispatch"
13 "github.com/coreos/go-systemd/daemon"
22 // Config used by crunch-dispatch-slurm
26 SbatchArguments []string
27 PollPeriod arvados.Duration
29 // crunch-run command to invoke. The container UUID will be
30 // appended. If nil, []string{"crunch-run"} will be used.
32 // Example: []string{"crunch-run", "--cgroup-parent-subsystem=memory"}
33 CrunchRunCommand []string
35 // Minimum time between two attempts to run the same container
36 MinRetryPeriod arvados.Duration
51 const defaultConfigPath = "/etc/arvados/crunch-dispatch-slurm/crunch-dispatch-slurm.yml"
54 flags := flag.NewFlagSet("crunch-dispatch-slurm", flag.ExitOnError)
55 flags.Usage = func() { usage(flags) }
57 configPath := flags.String(
60 "`path` to JSON or YAML configuration file")
62 // Parse args; omit the first arg which is the command name
63 flags.Parse(os.Args[1:])
65 err := readConfig(&theConfig, *configPath)
70 if theConfig.CrunchRunCommand == nil {
71 theConfig.CrunchRunCommand = []string{"crunch-run"}
74 if theConfig.PollPeriod == 0 {
75 theConfig.PollPeriod = arvados.Duration(10 * time.Second)
78 if theConfig.Client.APIHost != "" || theConfig.Client.AuthToken != "" {
79 // Copy real configs into env vars so [a]
80 // MakeArvadosClient() uses them, and [b] they get
81 // propagated to crunch-run via SLURM.
82 os.Setenv("ARVADOS_API_HOST", theConfig.Client.APIHost)
83 os.Setenv("ARVADOS_API_TOKEN", theConfig.Client.AuthToken)
84 os.Setenv("ARVADOS_API_HOST_INSECURE", "")
85 if theConfig.Client.Insecure {
86 os.Setenv("ARVADOS_API_HOST_INSECURE", "1")
88 os.Setenv("ARVADOS_KEEP_SERVICES", strings.Join(theConfig.Client.KeepServiceURIs, " "))
89 os.Setenv("ARVADOS_EXTERNAL_CLIENT", "")
91 log.Printf("warning: Client credentials missing from config, so falling back on environment variables (deprecated).")
94 arv, err := arvadosclient.MakeArvadosClient()
96 log.Printf("Error making Arvados client: %v", err)
101 sqCheck = SqueueChecker{Period: time.Duration(theConfig.PollPeriod)}
104 dispatcher := dispatch.Dispatcher{
107 PollPeriod: time.Duration(theConfig.PollPeriod),
108 MinRetryPeriod: time.Duration(theConfig.MinRetryPeriod),
111 if _, err := daemon.SdNotify(false, "READY=1"); err != nil {
112 log.Printf("Error notifying init daemon: %v", err)
115 return dispatcher.Run()
119 func sbatchFunc(container arvados.Container) *exec.Cmd {
120 memPerCPU := math.Ceil(float64(container.RuntimeConstraints.RAM) / (float64(container.RuntimeConstraints.VCPUs) * 1048576))
122 var sbatchArgs []string
123 sbatchArgs = append(sbatchArgs, "--share")
124 sbatchArgs = append(sbatchArgs, theConfig.SbatchArguments...)
125 sbatchArgs = append(sbatchArgs, fmt.Sprintf("--job-name=%s", container.UUID))
126 sbatchArgs = append(sbatchArgs, fmt.Sprintf("--mem-per-cpu=%d", int(memPerCPU)))
127 sbatchArgs = append(sbatchArgs, fmt.Sprintf("--cpus-per-task=%d", container.RuntimeConstraints.VCPUs))
128 if container.SchedulingParameters.Partitions != nil {
129 sbatchArgs = append(sbatchArgs, fmt.Sprintf("--partition=%s", strings.Join(container.SchedulingParameters.Partitions, ",")))
132 return exec.Command("sbatch", sbatchArgs...)
136 func scancelFunc(container arvados.Container) *exec.Cmd {
137 return exec.Command("scancel", "--name="+container.UUID)
140 // Wrap these so that they can be overridden by tests
141 var sbatchCmd = sbatchFunc
142 var scancelCmd = scancelFunc
144 // Submit job to slurm using sbatch.
145 func submit(dispatcher *dispatch.Dispatcher,
146 container arvados.Container, crunchRunCommand []string) (submitErr error) {
148 // If we didn't get as far as submitting a slurm job,
149 // unlock the container and return it to the queue.
150 if submitErr == nil {
151 // OK, no cleanup needed
154 err := dispatcher.Unlock(container.UUID)
156 log.Printf("Error unlocking container %s: %v", container.UUID, err)
160 cmd := sbatchCmd(container)
162 // Send a tiny script on stdin to execute the crunch-run
163 // command (slurm requires this to be a #! script)
164 cmd.Stdin = strings.NewReader(execScript(append(crunchRunCommand, container.UUID)))
166 var stdout, stderr bytes.Buffer
170 // Mutex between squeue sync and running sbatch or scancel.
172 defer sqCheck.L.Unlock()
174 log.Printf("exec sbatch %+q", cmd.Args)
178 log.Printf("sbatch succeeded: %q", strings.TrimSpace(stdout.String()))
180 case *exec.ExitError:
181 return fmt.Errorf("sbatch %+q failed: %v (stderr: %q)", cmd.Args, err, stderr)
183 return fmt.Errorf("exec failed: %v", err)
187 // If the container is marked as Locked, check if it is already in the slurm
188 // queue. If not, submit it.
190 // If the container is marked as Running, check if it is in the slurm queue.
191 // If not, mark it as Cancelled.
192 func monitorSubmitOrCancel(dispatcher *dispatch.Dispatcher, container arvados.Container, monitorDone *bool) {
195 if sqCheck.HasUUID(container.UUID) {
196 // Found in the queue, so continue monitoring
198 } else if container.State == dispatch.Locked && !submitted {
199 // Not in queue but in Locked state and we haven't
200 // submitted it yet, so submit it.
202 log.Printf("About to submit queued container %v", container.UUID)
204 if err := submit(dispatcher, container, theConfig.CrunchRunCommand); err != nil {
205 log.Printf("Error submitting container %s to slurm: %v",
207 // maybe sbatch is broken, put it back to queued
208 dispatcher.Unlock(container.UUID)
212 // Not in queue and we are not going to submit it.
213 // Refresh the container state. If it is
214 // Complete/Cancelled, do nothing, if it is Locked then
215 // release it back to the Queue, if it is Running then
216 // clean up the record.
218 var con arvados.Container
219 err := dispatcher.Arv.Get("containers", container.UUID, nil, &con)
221 log.Printf("Error getting final container state: %v", err)
225 case dispatch.Locked:
226 log.Printf("Container %s in state %v but missing from slurm queue, changing to %v.",
227 container.UUID, con.State, dispatch.Queued)
228 dispatcher.Unlock(container.UUID)
229 case dispatch.Running:
230 st := dispatch.Cancelled
231 log.Printf("Container %s in state %v but missing from slurm queue, changing to %v.",
232 container.UUID, con.State, st)
233 dispatcher.UpdateState(container.UUID, st)
235 // Container state is Queued, Complete or Cancelled so stop monitoring it.
242 // Run or monitor a container.
244 // Monitor status updates. If the priority changes to zero, cancel the
245 // container using scancel.
246 func run(dispatcher *dispatch.Dispatcher,
247 container arvados.Container,
248 status chan arvados.Container) {
250 log.Printf("Monitoring container %v started", container.UUID)
251 defer log.Printf("Monitoring container %v finished", container.UUID)
254 go monitorSubmitOrCancel(dispatcher, container, &monitorDone)
256 for container = range status {
257 if container.Priority == 0 && (container.State == dispatch.Locked || container.State == dispatch.Running) {
258 log.Printf("Canceling container %s", container.UUID)
259 // Mutex between squeue sync and running sbatch or scancel.
261 cmd := scancelCmd(container)
262 msg, err := cmd.CombinedOutput()
266 log.Printf("Error stopping container %s with %v %v: %v %v", container.UUID, cmd.Path, cmd.Args, err, string(msg))
267 if sqCheck.HasUUID(container.UUID) {
268 log.Printf("Container %s is still in squeue after scancel.", container.UUID)
273 // Ignore errors; if necessary, we'll try again next time
274 dispatcher.UpdateState(container.UUID, dispatch.Cancelled)
280 func readConfig(dst interface{}, path string) error {
281 err := config.LoadFile(dst, path)
282 if err != nil && os.IsNotExist(err) && path == defaultConfigPath {
283 log.Printf("Config not specified. Continue with default configuration.")