Skip to content

Latest commit

 

History

History
101 lines (74 loc) · 2.05 KB

spark-api-StagesResource.adoc

File metadata and controls

101 lines (74 loc) · 2.05 KB

StagesResource

StagesResource is…​FIXME

Table 1. StagesResource’s Paths
Path HTTP Method Description

GET

stageList

{stageId: \d+}

GET

stageData

{stageId: \d+}/{stageAttemptId: \d+}

GET

oneAttemptData

{stageId: \d+}/{stageAttemptId: \d+}/taskSummary

GET

taskSummary

{stageId: \d+}/{stageAttemptId: \d+}/taskList

GET

taskList

stageList Method

stageList(@QueryParam("status") statuses: JList[StageStatus]): Seq[StageData]

stageList…​FIXME

Note
stageList is used when…​FIXME

stageData Method

stageData(
  @PathParam("stageId") stageId: Int,
  @QueryParam("details") @DefaultValue("true") details: Boolean): Seq[StageData]

stageData…​FIXME

Note
stageData is used when…​FIXME

oneAttemptData Method

oneAttemptData(
  @PathParam("stageId") stageId: Int,
  @PathParam("stageAttemptId") stageAttemptId: Int,
  @QueryParam("details") @DefaultValue("true") details: Boolean): StageData

oneAttemptData…​FIXME

Note
oneAttemptData is used when…​FIXME

taskSummary Method

taskSummary(
  @PathParam("stageId") stageId: Int,
  @PathParam("stageAttemptId") stageAttemptId: Int,
  @DefaultValue("0.05,0.25,0.5,0.75,0.95") @QueryParam("quantiles") quantileString: String)
: TaskMetricDistributions

taskSummary…​FIXME

Note
taskSummary is used when…​FIXME

taskList Method

taskList(
  @PathParam("stageId") stageId: Int,
  @PathParam("stageAttemptId") stageAttemptId: Int,
  @DefaultValue("0") @QueryParam("offset") offset: Int,
  @DefaultValue("20") @QueryParam("length") length: Int,
  @DefaultValue("ID") @QueryParam("sortBy") sortBy: TaskSorting): Seq[TaskData]

taskList…​FIXME

Note
taskList is used when…​FIXME