Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
io.hydrosphere.mist.master.HTTPService.scala Maven / Gradle / Ivy
package io.hydrosphere.mist.master
import java.util.concurrent.TimeUnit
import akka.actor.{ActorSystem, Props}
import akka.http.scaladsl.marshallers.sprayjson.SprayJsonSupport
import akka.http.scaladsl.marshalling.ToResponseMarshallable
import akka.http.scaladsl.model._
import akka.http.scaladsl.model.headers.RawHeader
import akka.http.scaladsl.server.Directives
import akka.http.scaladsl.server.directives.ParameterDirectives.ParamMagnet
import akka.pattern.{AskTimeoutException, ask}
import akka.stream.ActorMaterializer
import akka.stream.scaladsl.Flow
import io.hydrosphere.mist.Messages._
import io.hydrosphere.mist.jobs._
import io.hydrosphere.mist.utils.Logger
import io.hydrosphere.mist.utils.json.JobConfigurationJsonSerialization
import io.hydrosphere.mist.worker.CLINode
import io.hydrosphere.mist.{Constants, MistConfig, RouteConfig}
import org.json4s.DefaultFormats
import org.json4s.native.Json
import scala.concurrent.ExecutionContext.Implicits.global
import scala.concurrent.duration.FiniteDuration
import scala.language.reflectiveCalls
/** HTTP interface */
private[mist] trait HTTPService extends Directives with SprayJsonSupport with JobConfigurationJsonSerialization with Logger {
implicit val system: ActorSystem
implicit val materializer: ActorMaterializer
// /jobs
def route: Flow[HttpRequest, HttpResponse, Unit] = {
path("jobs") {
// POST /jobs
post {
parameters('train.?, 'serve.?) { (train, serve) =>
val requestBody = train match {
case Some(_) => as[TrainingJobConfiguration]
case None => serve match {
case Some(_) => as[ServingJobConfiguration]
case None => as[MistJobConfiguration]
}
}
entity(requestBody) { jobCreatingRequest =>
doComplete(jobCreatingRequest)
}
}
}
} ~
pathPrefix("api" / Segment ) { jobRoute =>
pathEnd {
post {
parameters('train.?, 'serve.?) { (train, serve) =>
entity(as[Map[String, Any]]) { jobRequestParams =>
// TODO: use FullJobConfigurationBuilder
fillJobRequestFromConfig(jobRequestParams, jobRoute, train.nonEmpty, serve.nonEmpty) match {
case Left(_: NoRouteError) =>
complete(HttpResponse(StatusCodes.BadRequest, entity = "Job route config is not valid. Unknown resource!"))
case Left(error: ConfigError) =>
complete(HttpResponse(StatusCodes.InternalServerError, entity = error.reason))
case Right(jobRequest: FullJobConfiguration) =>
doComplete(jobRequest)
}
}
}
}
}
} ~
path("internal" / Segment) { cmd =>
pathEnd {
get {
cmd match {
case "jobs" => doUserInterfaceComplete(Map("cmd" -> Constants.CLI.listJobsMsg))
case "workers" => doUserInterfaceComplete(Map("cmd" -> Constants.CLI.listWorkersMsg))
case "routers" => doUserInterfaceComplete(Map("cmd" -> Constants.CLI.listRoutersMsg))
}
}
}
} ~
pathPrefix("ui") {
get {
pathEnd {
redirect("/ui/", StatusCodes.PermanentRedirect)
} ~
pathSingleSlash {
getFromResource("web/index.html")
} ~
getFromResourceDirectory("web")
}
} ~
path("internal" / "jobs" / Segment) { cmd =>
pathEnd {
delete {
doUserInterfaceComplete(Map("cmd" -> (Constants.CLI.stopJobMsg + cmd)))
}
}
} ~
path("internal" / "workers" / Segment) { cmd =>
pathEnd {
delete {
doUserInterfaceComplete(Map("cmd" -> (Constants.CLI.stopWorkerMsg + cmd)))
}
}
} ~
path("internal" / "workers" ) {
delete {
doUserInterfaceComplete(Map("cmd" -> (Constants.CLI.stopAllWorkersMsg)))
}
}
}
def doComplete(jobRequest: FullJobConfiguration): akka.http.scaladsl.server.Route = {
respondWithHeader(RawHeader("Content-Type", "application/json"))
complete {
logger.info(jobRequest.parameters.toString)
val workerManagerActor = system.actorSelection(s"akka://mist/user/${Constants.Actors.workerManagerName}")
val timeDuration = MistConfig.Contexts.timeout(jobRequest.namespace)
if(timeDuration.isFinite()) {
val future = workerManagerActor.ask(jobRequest)(timeout = FiniteDuration(timeDuration.toNanos, TimeUnit.NANOSECONDS))
future
.recover {
case _: AskTimeoutException => Right(Constants.Errors.jobTimeOutError)
case error: Throwable => Right(error.toString)
}
.map[ToResponseMarshallable] {
case result: Either[Map[String, Any], String] =>
val jobResult: JobResult = result match {
case Left(jobResults: Map[String, Any]) =>
JobResult(success = true, payload = jobResults, request = jobRequest, errors = List.empty)
case Right(error: String) =>
JobResult(success = false, payload = Map.empty[String, Any], request = jobRequest, errors = List(error))
}
HttpResponse(entity = HttpEntity(ContentType(MediaTypes.`application/json`), Json(DefaultFormats).write(jobResult)))
}
}
else {
workerManagerActor ! jobRequest
val jobResult = JobResult(success = true, payload = Map("result" -> "Infinity Job Started"), request = jobRequest, errors = List.empty)
HttpResponse(entity = HttpEntity(ContentType(MediaTypes.`application/json`), Json(DefaultFormats).write(jobResult)))
}
}
}
def fillJobRequestFromConfig(jobRequestParams: Map[String, Any], jobRoute: String, isTraining: Boolean = false, isServing: Boolean = false): Either[JobConfigError, FullJobConfiguration] = {
try {
val config = RouteConfig(jobRoute)
if (isTraining) {
Right(TrainingJobConfiguration(config.path, config.className, config.namespace, jobRequestParams, None, Some(jobRoute)))
} else if (isServing) {
Right(ServingJobConfiguration(config.path, config.className, config.namespace, jobRequestParams, None, Some(jobRoute)))
} else {
Right(MistJobConfiguration(config.path, config.className, config.namespace, jobRequestParams, None, Some(jobRoute)))
}
} catch {
case exc: RouteConfig.RouteNotFoundError => Left(NoRouteError(exc.toString))
case exc: Throwable => Left(ConfigError(exc.toString))
}
}
lazy val internalUserInterfaceActor = system.actorOf(Props[CLINode], name = Constants.CLI.internalUserInterfaceActorName)
def doUserInterfaceComplete(cmd: Map[String, Any]): akka.http.scaladsl.server.Route = {
respondWithHeader(RawHeader("Content-Type", "application/json"))
var command: Any = ""
def getCommand: () => Any = { () => {command} }
lazy val future = internalUserInterfaceActor.ask(getCommand())(timeout = Constants.CLI.timeoutDuration)
complete {
command = cmd("cmd") match {
case Constants.CLI.listJobsMsg => ListJobs
case Constants.CLI.listWorkersMsg => ListWorkers
case Constants.CLI.listRoutersMsg => ListRouters
case msg if msg.toString.contains(Constants.CLI.stopJobMsg) => new StopJob(msg.toString)
case msg if msg.toString.contains(Constants.CLI.stopWorkerMsg) => new StopWorker(msg.toString)
case Constants.CLI.stopAllWorkersMsg => StopAllContexts
case _ => throw new Exception("Unknow command")
}
future
.recover{
case error: Throwable => HttpResponse (entity = HttpEntity (ContentType (MediaTypes.`application/json`), error.toString))
}
.map[ToResponseMarshallable] {
case result: Map[String, Any] =>
HttpResponse (entity = HttpEntity (ContentType (MediaTypes.`application/json`), Json(DefaultFormats).write(result)))
case result: List[Any] =>
HttpResponse (entity = HttpEntity (ContentType (MediaTypes.`application/json`), Json(DefaultFormats).write(result)))
case result: String =>
HttpResponse (entity = HttpEntity (ContentType (MediaTypes.`application/json`), Json(DefaultFormats).write(Map("result"->result))))
}
}
}
}