Class QueryStage (2.23.2)

public class QueryStage implements Serializable

BigQuery provides diagnostic information about a completed query's execution plan (or query plan for short). The query plan describes a query as a series of stages, with each stage comprising a number of steps that read from data sources, perform a series of transformations on the input, and emit an output to a future stage (or the final result). This class contains information on a query stage. See Also: Query Plan

Inheritance

Object > QueryStage

Implements

Serializable

Methods

equals(Object obj)

public final boolean equals(Object obj)
Parameter
NameDescription
objObject
Returns
TypeDescription
boolean
Overrides

getCompletedParallelInputs()

public long getCompletedParallelInputs()

Returns the number of parallel input segments completed.

Returns
TypeDescription
long

getComputeMsAvg()

public long getComputeMsAvg()

Returns the time in milliseconds the average worker spent on CPU-bound tasks.

Returns
TypeDescription
long

getComputeMsMax()

public long getComputeMsMax()

Returns the time in milliseconds the slowest worker spent on CPU-bound tasks.

Returns
TypeDescription
long

getComputeRatioAvg()

public double getComputeRatioAvg()

Returns the time the average worker spent CPU-bound, divided by the longest time spent by any worker in any segment.

Returns
TypeDescription
double

getComputeRatioMax()

public double getComputeRatioMax()

Returns the time the slowest worker spent CPU-bound, divided by the longest time spent by any worker in any segment.

Returns
TypeDescription
double

getEndMs()

public long getEndMs()

Returns the stage end time represented as milliseconds since epoch.

Returns
TypeDescription
long

getGeneratedId()

public long getGeneratedId()

Returns a unique, server-generated ID for the stage within its plan.

Returns
TypeDescription
long

getInputStages()

public List<Long> getInputStages()

Returns a list of the stage IDs that are inputs to this stage.

Returns
TypeDescription
List<Long>

getName()

public String getName()

Returns a human-readable name for the stage.

Returns
TypeDescription
String

getParallelInputs()

public long getParallelInputs()

Returns the number of parallel input segments to be processed.

Returns
TypeDescription
long

getReadMsAvg()

public long getReadMsAvg()

Returns the time in milliseconds the average worker spent reading input.

Returns
TypeDescription
long

getReadMsMax()

public long getReadMsMax()

Returns the time in milliseconds the slowest worker spent reading input.

Returns
TypeDescription
long

getReadRatioAvg()

public double getReadRatioAvg()

Returns the time the average worker spent reading input data, divided by the longest time spent by any worker in any segment.

Returns
TypeDescription
double

getReadRatioMax()

public double getReadRatioMax()

Returns the time the slowest worker spent reading input data, divided by the longest time spent by any worker in any segment.

Returns
TypeDescription
double

getRecordsRead()

public long getRecordsRead()

Returns the number of rows (top-level records) read by the stage.

Returns
TypeDescription
long

getRecordsWritten()

public long getRecordsWritten()

Returns the number of rows (top-level records) written by the stage.

Returns
TypeDescription
long

getShuffleOutputBytes()

public long getShuffleOutputBytes()

Returns the total number of bytes written to shuffle.

Returns
TypeDescription
long

getShuffleOutputBytesSpilled()

public long getShuffleOutputBytesSpilled()

Returns the total number of bytes writtedn to shuffle and spilled to disk.

Returns
TypeDescription
long

getSlotMs()

public long getSlotMs()

Returns the slot-milliseconds used by the stage.

Returns
TypeDescription
long

getStartMs()

public long getStartMs()

Returns the stage start time represented as milliseconds since epoch.

Returns
TypeDescription
long

getStatus()

public String getStatus()

Returns the current status for the stage.

Returns
TypeDescription
String

getSteps()

public List<QueryStage.QueryStep> getSteps()

Returns the list of steps within the stage in dependency order (approximately chronological).

Returns
TypeDescription
List<QueryStep>

getWaitMsAvg()

public long getWaitMsAvg()

Returns the time in milliseconds the average worker spent waiting to be scheduled.

Returns
TypeDescription
long

getWaitMsMax()

public long getWaitMsMax()

Returns the time in milliseconds the slowest worker spent waiting to be scheduled.

Returns
TypeDescription
long

getWaitRatioAvg()

public double getWaitRatioAvg()

Returns the time the average worker spent waiting to be scheduled, divided by the longest time spent by any worker in any segment.

Returns
TypeDescription
double

getWaitRatioMax()

public double getWaitRatioMax()

Returns the time the slowest worker spent waiting to be scheduled, divided by the longest time spent by any worker in any segment.

Returns
TypeDescription
double

getWriteMsAvg()

public long getWriteMsAvg()

Returns the time in milliseconds the average worker spent writing output.

Returns
TypeDescription
long

getWriteMsMax()

public long getWriteMsMax()

Returns the time in milliseconds the slowest worker spent writing output.

Returns
TypeDescription
long

getWriteRatioAvg()

public double getWriteRatioAvg()

Returns the time the average worker spent writing output data, divided by the longest time spent by any worker in any segment.

Returns
TypeDescription
double

getWriteRatioMax()

public double getWriteRatioMax()

Returns the time the slowest worker spent writing output data, divided by the longest time spent by any worker in any segment.

Returns
TypeDescription
double

hashCode()

public final int hashCode()
Returns
TypeDescription
int
Overrides

toString()

public String toString()
Returns
TypeDescription
String
Overrides