Struct google_bigquery2::ExplainQueryStage [] [src]

pub struct ExplainQueryStage {
    pub compute_ratio_max: Option<f64>,
    pub name: Option<String>,
    pub records_written: Option<String>,
    pub wait_ratio_max: Option<f64>,
    pub read_ratio_avg: Option<f64>,
    pub read_ratio_max: Option<f64>,
    pub steps: Option<Vec<ExplainQueryStep>>,
    pub records_read: Option<String>,
    pub compute_ratio_avg: Option<f64>,
    pub write_ratio_max: Option<f64>,
    pub wait_ratio_avg: Option<f64>,
    pub id: Option<String>,
    pub write_ratio_avg: Option<f64>,
}

There is no detailed description.

This type is not used in any activity, and only used as part of another schema.

Fields

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

Human-readable name for stage.

Number of records written by the stage.

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

Relative amount of time the average shard spent reading input.

Relative amount of time the slowest shard spent reading input.

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

Number of records read into the stage.

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

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

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

Unique ID for stage within plan.

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

Trait Implementations

impl Debug for ExplainQueryStage
[src]

Formats the value using the given formatter.

impl Clone for ExplainQueryStage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for ExplainQueryStage
[src]

Returns the "default value" for a type. Read more

impl Part for ExplainQueryStage
[src]