Struct google_bigquery2::QueryTimelineSample[][src]

pub struct QueryTimelineSample {
    pub total_slot_ms: Option<String>,
    pub active_units: Option<String>,
    pub elapsed_ms: Option<String>,
    pub pending_units: Option<String>,
    pub completed_units: Option<String>,
}

There is no detailed description.

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

Fields

Cumulative slot-ms consumed by the query.

Total number of units currently being processed by workers. This does not correspond directly to slot usage. This is the largest value observed since the last sample.

Milliseconds elapsed since the start of query execution.

Total parallel units of work remaining for the active stages.

Total parallel units of work completed by this query.

Trait Implementations

impl Default for QueryTimelineSample
[src]

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

impl Clone for QueryTimelineSample
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for QueryTimelineSample
[src]

Formats the value using the given formatter. Read more

impl Part for QueryTimelineSample
[src]

Auto Trait Implementations