pub struct DaskStats {
pub tasks_executed: u64,
pub task_execution_time_sec: f64,
pub workers_connected: u32,
pub data_transferred_bytes: u64,
pub task_retries: u64,
pub worker_failures: u64,
pub memory_usage_bytes: u64,
pub cpu_utilization: f64,
pub network_bandwidth_bytes_per_sec: f64,
pub average_task_duration_sec: f64,
}Expand description
Dask integration statistics
Fields§
§tasks_executed: u64Number of tasks executed
task_execution_time_sec: f64Total task execution time (seconds)
workers_connected: u32Number of workers connected
data_transferred_bytes: u64Total data transferred (bytes)
task_retries: u64Number of task retries
worker_failures: u64Number of worker failures
memory_usage_bytes: u64Memory usage (bytes)
cpu_utilization: f64CPU utilization
network_bandwidth_bytes_per_sec: f64Network bandwidth (bytes/sec)
average_task_duration_sec: f64Average task duration (seconds)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DaskStats
impl RefUnwindSafe for DaskStats
impl Send for DaskStats
impl Sync for DaskStats
impl Unpin for DaskStats
impl UnsafeUnpin for DaskStats
impl UnwindSafe for DaskStats
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more