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

tech.ytsaurus.spark.launcher.rest.MasterWrapperServlet.scala Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
package tech.ytsaurus.spark.launcher.rest

import io.circe.syntax._
import javax.servlet.http.HttpServletRequest
import org.scalatra.servlet.RichRequest
import org.scalatra.{ApiFormats, ScalatraServlet}

class MasterWrapperServlet(sparkMasterEndpoint: String,
                           sparkByopPort: Option[Int]) extends ScalatraServlet with ApiFormats {
  private val byopDiscoveryService = sparkByopPort.map(bp => new ByopDiscoveryService(sparkMasterEndpoint, bp))

  before() {
    contentType = formats("json")
  }

  get("/") {
    Map(
      "byop_enabled" -> sparkByopPort.nonEmpty
    ).asJson.spaces2
  }

  get("/api/v4/discover_proxies") {
    implicit def enrichRequest(implicit request: HttpServletRequest): RichRequest = RichRequest(request)

    val info = byopDiscoveryService.map(_.discoveryInfo).getOrElse(DiscoveryInfo())
    val headerFormat = YtHeaderFormat.fromHeader

    YtOutputFormat.fromHeaders(headerFormat).format(info)
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy