ExplainQueryStageResponse

data class ExplainQueryStageResponse(val completedParallelInputs: String, val computeMsAvg: String, val computeMsMax: String, val computeRatioAvg: Double, val computeRatioMax: Double, val endMs: String, val inputStages: List<String>, val name: String, val parallelInputs: String, val readMsAvg: String, val readMsMax: String, val readRatioAvg: Double, val readRatioMax: Double, val recordsRead: String, val recordsWritten: String, val shuffleOutputBytes: String, val shuffleOutputBytesSpilled: String, val slotMs: String, val startMs: String, val status: String, val steps: List<ExplainQueryStepResponse>, val waitMsAvg: String, val waitMsMax: String, val waitRatioAvg: Double, val waitRatioMax: Double, val writeMsAvg: String, val writeMsMax: String, val writeRatioAvg: Double, val writeRatioMax: Double)

Constructors

Link copied to clipboard
fun ExplainQueryStageResponse(completedParallelInputs: String, computeMsAvg: String, computeMsMax: String, computeRatioAvg: Double, computeRatioMax: Double, endMs: String, inputStages: List<String>, name: String, parallelInputs: String, readMsAvg: String, readMsMax: String, readRatioAvg: Double, readRatioMax: Double, recordsRead: String, recordsWritten: String, shuffleOutputBytes: String, shuffleOutputBytesSpilled: String, slotMs: String, startMs: String, status: String, steps: List<ExplainQueryStepResponse>, waitMsAvg: String, waitMsMax: String, waitRatioAvg: Double, waitRatioMax: Double, writeMsAvg: String, writeMsMax: String, writeRatioAvg: Double, writeRatioMax: Double)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Number of parallel input segments completed.

Link copied to clipboard

Milliseconds the average shard spent on CPU-bound tasks.

Link copied to clipboard

Milliseconds the slowest shard spent on CPU-bound tasks.

Link copied to clipboard

Relative amount of time the average shard spent on CPU-bound tasks.

Link copied to clipboard

Relative amount of time the slowest shard spent on CPU-bound tasks.

Link copied to clipboard

Stage end time represented as milliseconds since epoch.

Link copied to clipboard

IDs for stages that are inputs to this stage.

Link copied to clipboard

Human-readable name for stage.

Link copied to clipboard

Number of parallel input segments to be processed.

Link copied to clipboard

Milliseconds the average shard spent reading input.

Link copied to clipboard

Milliseconds the slowest shard spent reading input.

Link copied to clipboard

Relative amount of time the average shard spent reading input.

Link copied to clipboard

Relative amount of time the slowest shard spent reading input.

Link copied to clipboard

Number of records read into the stage.

Link copied to clipboard

Number of records written by the stage.

Link copied to clipboard

Total number of bytes written to shuffle.

Link copied to clipboard

Total number of bytes written to shuffle and spilled to disk.

Link copied to clipboard

Slot-milliseconds used by the stage.

Link copied to clipboard

Stage start time represented as milliseconds since epoch.

Link copied to clipboard

Current status for the stage.

Link copied to clipboard

List of operations within the stage in dependency order (approximately chronological).

Link copied to clipboard

Milliseconds the average shard spent waiting to be scheduled.

Link copied to clipboard

Milliseconds the slowest shard spent waiting to be scheduled.

Link copied to clipboard

Relative amount of time the average shard spent waiting to be scheduled.

Link copied to clipboard

Relative amount of time the slowest shard spent waiting to be scheduled.

Link copied to clipboard

Milliseconds the average shard spent on writing output.

Link copied to clipboard

Milliseconds the slowest shard spent on writing output.

Link copied to clipboard

Relative amount of time the average shard spent on writing output.

Link copied to clipboard

Relative amount of time the slowest shard spent on writing output.