pub struct StateOperatorProgress {
pub all_removals_time_ms: Option<i64>,
pub all_updates_time_ms: Option<i64>,
pub commit_time_ms: Option<i64>,
pub custom_metrics: Option<HashMap<String, i64>>,
pub memory_used_bytes: Option<i64>,
pub num_rows_dropped_by_watermark: Option<i64>,
pub num_rows_removed: Option<i64>,
pub num_rows_total: Option<i64>,
pub num_rows_updated: Option<i64>,
pub num_shuffle_partitions: Option<i64>,
pub num_state_store_instances: Option<i64>,
pub operator_name: Option<String>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§all_removals_time_ms: Option<i64>no description provided
all_updates_time_ms: Option<i64>no description provided
commit_time_ms: Option<i64>no description provided
custom_metrics: Option<HashMap<String, i64>>no description provided
memory_used_bytes: Option<i64>no description provided
num_rows_dropped_by_watermark: Option<i64>no description provided
num_rows_removed: Option<i64>no description provided
num_rows_total: Option<i64>no description provided
num_rows_updated: Option<i64>no description provided
num_shuffle_partitions: Option<i64>no description provided
num_state_store_instances: Option<i64>no description provided
operator_name: Option<String>no description provided
Trait Implementations§
Source§impl Clone for StateOperatorProgress
impl Clone for StateOperatorProgress
Source§fn clone(&self) -> StateOperatorProgress
fn clone(&self) -> StateOperatorProgress
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StateOperatorProgress
impl Debug for StateOperatorProgress
Source§impl Default for StateOperatorProgress
impl Default for StateOperatorProgress
Source§fn default() -> StateOperatorProgress
fn default() -> StateOperatorProgress
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StateOperatorProgress
impl<'de> Deserialize<'de> for StateOperatorProgress
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for StateOperatorProgress
impl Serialize for StateOperatorProgress
impl Part for StateOperatorProgress
Auto Trait Implementations§
impl Freeze for StateOperatorProgress
impl RefUnwindSafe for StateOperatorProgress
impl Send for StateOperatorProgress
impl Sync for StateOperatorProgress
impl Unpin for StateOperatorProgress
impl UnwindSafe for StateOperatorProgress
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more