[−][src]Struct google_bigquery2::ExplainQueryStage
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields
status: Option<String>Current status for the stage.
shuffle_output_bytes: Option<String>Total number of bytes written to shuffle.
compute_ms_max: Option<String>Milliseconds the slowest shard spent on CPU-bound tasks.
input_stages: Option<Vec<String>>IDs for stages that are inputs to this stage.
compute_ms_avg: Option<String>Milliseconds the average shard spent on CPU-bound tasks.
start_ms: Option<String>Stage start time represented as milliseconds since epoch.
shuffle_output_bytes_spilled: Option<String>Total number of bytes written to shuffle and spilled to disk.
wait_ms_avg: Option<String>Milliseconds the average shard spent waiting to be scheduled.
slot_ms: Option<String>Slot-milliseconds used by the stage.
write_ms_avg: Option<String>Milliseconds the average shard spent on writing output.
read_ms_avg: Option<String>Milliseconds the average shard spent reading input.
wait_ratio_avg: Option<f64>Relative amount of time the average shard spent waiting to be scheduled.
id: Option<String>Unique ID for stage within plan.
end_ms: Option<String>Stage end time represented as milliseconds since epoch.
compute_ratio_max: Option<f64>Relative amount of time the slowest shard spent on CPU-bound tasks.
name: Option<String>Human-readable name for stage.
wait_ms_max: Option<String>Milliseconds the slowest shard spent waiting to be scheduled.
read_ms_max: Option<String>Milliseconds the slowest shard spent reading input.
records_written: Option<String>Number of records written by the stage.
wait_ratio_max: Option<f64>Relative amount of time the slowest shard spent waiting to be scheduled.
read_ratio_avg: Option<f64>Relative amount of time the average shard spent reading input.
parallel_inputs: Option<String>Number of parallel input segments to be processed.
read_ratio_max: Option<f64>Relative amount of time the slowest shard spent reading input.
steps: Option<Vec<ExplainQueryStep>>List of operations within the stage in dependency order (approximately chronological).
records_read: Option<String>Number of records read into the stage.
compute_ratio_avg: Option<f64>Relative amount of time the average shard spent on CPU-bound tasks.
completed_parallel_inputs: Option<String>Number of parallel input segments completed.
write_ratio_max: Option<f64>Relative amount of time the slowest shard spent on writing output.
write_ms_max: Option<String>Milliseconds the slowest shard spent on writing output.
write_ratio_avg: Option<f64>Relative amount of time the average shard spent on writing output.
Trait Implementations
impl Clone for ExplainQueryStage[src]
fn clone(&self) -> ExplainQueryStage[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for ExplainQueryStage[src]
impl Default for ExplainQueryStage[src]
fn default() -> ExplainQueryStage[src]
impl<'de> Deserialize<'de> for ExplainQueryStage[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Part for ExplainQueryStage[src]
impl Serialize for ExplainQueryStage[src]
Auto Trait Implementations
impl RefUnwindSafe for ExplainQueryStage
impl Send for ExplainQueryStage
impl Sync for ExplainQueryStage
impl Unpin for ExplainQueryStage
impl UnwindSafe for ExplainQueryStage
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Typeable for T where
T: Any,
T: Any,