All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hubspot.singularity.executor.shells.SingularityExecutorShellCommandRunner Maven / Gradle / Ivy

The newest version!
package com.hubspot.singularity.executor.shells;

import com.google.common.base.CharMatcher;
import com.google.common.base.Joiner;
import com.google.common.util.concurrent.FutureCallback;
import com.google.common.util.concurrent.Futures;
import com.google.common.util.concurrent.ListenableFuture;
import com.google.common.util.concurrent.ListeningExecutorService;
import com.hubspot.singularity.SingularityTaskShellCommandRequest;
import com.hubspot.singularity.SingularityTaskShellCommandUpdate.UpdateType;
import com.hubspot.singularity.executor.config.SingularityExecutorConfiguration;
import com.hubspot.singularity.executor.task.SingularityExecutorTask;
import com.hubspot.singularity.executor.task.SingularityExecutorTaskProcessCallable;
import com.hubspot.singularity.executor.utils.MesosUtils;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.Scanner;
import java.util.stream.Collectors;

public class SingularityExecutorShellCommandRunner {
  private final SingularityTaskShellCommandRequest shellRequest;
  private final SingularityExecutorTask task;
  private final SingularityExecutorTaskProcessCallable taskProcess;
  private final ListeningExecutorService shellCommandExecutorService;
  private final SingularityExecutorShellCommandUpdater shellCommandUpdater;
  private final SingularityExecutorConfiguration executorConfiguration;

  @SuppressWarnings("serial")
  private static class InvalidShellCommandException extends RuntimeException {

    public InvalidShellCommandException(String message) {
      super(message);
    }
  }

  public static String convertCommandNameToLogfileName(String str) {
    return CharMatcher
      .whitespace()
      .or(CharMatcher.is('/'))
      .replaceFrom(str, '-')
      .toLowerCase();
  }

  public SingularityExecutorShellCommandRunner(
    SingularityTaskShellCommandRequest shellRequest,
    SingularityExecutorConfiguration executorConfiguration,
    SingularityExecutorTask task,
    SingularityExecutorTaskProcessCallable taskProcess,
    ListeningExecutorService shellCommandExecutorService,
    SingularityExecutorShellCommandUpdater shellCommandUpdater
  ) {
    this.shellRequest = shellRequest;
    this.executorConfiguration = executorConfiguration;
    this.task = task;
    this.taskProcess = taskProcess;
    this.shellCommandUpdater = shellCommandUpdater;
    this.shellCommandExecutorService = shellCommandExecutorService;
  }

  public SingularityTaskShellCommandRequest getShellRequest() {
    return shellRequest;
  }

  public SingularityExecutorTask getTask() {
    return task;
  }

  public ProcessBuilder buildProcessBuilder(
    List command,
    File outputFile,
    Map additionalEnv
  ) {
    ProcessBuilder builder = new ProcessBuilder(command);

    builder.environment().putAll(additionalEnv);

    builder.redirectOutput(ProcessBuilder.Redirect.appendTo(outputFile));
    builder.redirectError(ProcessBuilder.Redirect.appendTo(outputFile));

    return builder;
  }

  public ListenableFuture start() {
    List command = null;

    try {
      command = buildCommand();
    } catch (InvalidShellCommandException isce) {
      shellCommandUpdater.sendUpdate(
        UpdateType.INVALID,
        Optional.of(isce.getMessage()),
        Optional.empty()
      );
      return null;
    }

    final String outputFilename = executorConfiguration
      .getShellCommandOutFile()
      .replace(
        "{NAME}",
        shellRequest
          .getShellCommand()
          .getLogfileName()
          .orElse(
            convertCommandNameToLogfileName(shellRequest.getShellCommand().getName())
          )
      )
      .replace("{TIMESTAMP}", Long.toString(shellRequest.getTimestamp()));

    shellCommandUpdater.sendUpdate(
      UpdateType.ACKED,
      Optional.of(Joiner.on(" ").join(command)),
      Optional.of(outputFilename)
    );

    final File outputFile = MesosUtils
      .getTaskDirectoryPath(getTask().getTaskId())
      .resolve(outputFilename)
      .toFile();

    Map additionalEnv = new HashMap<>();
    additionalEnv.put(
      "TASK_SANDBOX_DIR",
      MesosUtils.getTaskDirectoryPath(getTask().getTaskId()).toString()
    );

    SingularityExecutorShellCommandRunnerCallable callable = new SingularityExecutorShellCommandRunnerCallable(
      task.getLog(),
      shellCommandUpdater,
      buildProcessBuilder(command, outputFile, additionalEnv),
      outputFile
    );

    ListenableFuture shellFuture = shellCommandExecutorService.submit(callable);

    Futures.addCallback(
      shellFuture,
      new FutureCallback() {

        @Override
        public void onSuccess(Integer result) {
          task.getLog().info("ShellRequest {} finished with {}", shellRequest, result);

          shellCommandUpdater.sendUpdate(
            UpdateType.FINISHED,
            Optional.of(String.format("Finished with code %s", result)),
            Optional.empty()
          );
        }

        @Override
        public void onFailure(Throwable t) {
          task.getLog().warn("ShellRequest {} failed", shellRequest, t);

          shellCommandUpdater.sendUpdate(
            UpdateType.FAILED,
            Optional.of(
              String.format(
                "Failed - %s (%s)",
                t.getClass().getSimpleName(),
                t.getMessage()
              )
            ),
            Optional.empty()
          );
        }
      },
      shellCommandExecutorService
    );

    return shellFuture;
  }

  private List buildCommand() {
    Optional matchingShellCommandDescriptor = executorConfiguration
      .getShellCommands()
      .stream()
      .filter(input -> input.getName().equals(shellRequest.getShellCommand().getName()))
      .findFirst();

    if (!matchingShellCommandDescriptor.isPresent()) {
      throw new InvalidShellCommandException(
        String.format(
          "\"%s\" command not found. If this command was added or modified after the task launched, then the task must be restarted to find it. Currently available commands are: %s",
          shellRequest.getShellCommand().getName(),
          executorConfiguration
            .getShellCommands()
            .stream()
            .map(SingularityExecutorShellCommandDescriptor::getName)
            .collect(Collectors.toList())
        )
      );
    }

    final SingularityExecutorShellCommandDescriptor shellCommandDescriptor = matchingShellCommandDescriptor.get();

    List command = new ArrayList<>();

    boolean isDocker =
      task.getTaskInfo().hasContainer() && task.getTaskInfo().getContainer().hasDocker();
    if (isDocker) {
      if (
        !shellCommandDescriptor.isSkipCommandPrefix() &&
        !shellCommandDescriptor.isSkipCommandPrefixDockerOnly()
      ) {
        command.addAll(executorConfiguration.getShellCommandPrefix());
      }

      command.addAll(
        Arrays.asList(
          "docker",
          "exec",
          String.format("%s%s", executorConfiguration.getDockerPrefix(), task.getTaskId())
        )
      );
    } else if (!shellCommandDescriptor.isSkipCommandPrefix()) {
      command.addAll(executorConfiguration.getShellCommandPrefix());
    }

    command.addAll(shellCommandDescriptor.getCommand());

    for (int i = 0; i < command.size(); i++) {
      if (command.get(i).equals(executorConfiguration.getShellCommandPidPlaceholder())) {
        int pid;
        Path pidFilePath = MesosUtils
          .getTaskDirectoryPath(getTask().getTaskId())
          .resolve(executorConfiguration.getShellCommandPidFile());
        if (Files.exists(pidFilePath)) {
          Scanner scanner = null;
          try {
            scanner = new Scanner(pidFilePath);
            scanner.useDelimiter("\\Z");
            pid = Integer.parseInt(scanner.next());
          } catch (Exception e) {
            throw new InvalidShellCommandException(
              String.format(
                "No PID found due to exception reading pid file: %s",
                e.getMessage()
              )
            );
          } finally {
            if (scanner != null) {
              try {
                scanner.close();
              } catch (Throwable t) {}
            }
          }
        } else if (isDocker) {
          pid = 1;
        } else {
          if (!taskProcess.getCurrentPid().isPresent()) {
            throw new InvalidShellCommandException("No PID found");
          }
          pid = taskProcess.getCurrentPid().get();
        }
        command.set(i, Integer.toString(pid));
      } else if (
        command.get(i).equals(executorConfiguration.getShellCommandUserPlaceholder())
      ) {
        command.set(
          i,
          taskProcess
            .getTask()
            .getExecutorData()
            .getUser()
            .orElse(executorConfiguration.getDefaultRunAsUser())
        );
      }
    }

    if (shellRequest.getShellCommand().getOptions().isPresent()) {
      for (SingularityExecutorShellCommandOptionDescriptor option : shellCommandDescriptor.getOptions()) {
        if (
          shellRequest.getShellCommand().getOptions().get().contains(option.getName())
        ) {
          command.add(option.getFlag());
        }
      }
    }

    return command;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy