pub struct TaskDescription {
pub session_id: String,
pub partition: PartitionId,
pub stage_attempt_num: usize,
pub task_id: usize,
pub task_attempt: usize,
pub data_cache: bool,
pub plan: Arc<dyn ExecutionPlan>,
}Expand description
Represents the basic unit of work for the kapot executor. Will execute one partition of one stage on one task slot.
Fields§
§session_id: String§partition: PartitionId§stage_attempt_num: usize§task_id: usize§task_attempt: usize§data_cache: bool§plan: Arc<dyn ExecutionPlan>Implementations§
Source§impl TaskDescription
impl TaskDescription
pub fn get_output_partition_number(&self) -> usize
Trait Implementations§
Source§impl Clone for TaskDescription
impl Clone for TaskDescription
Source§fn clone(&self) -> TaskDescription
fn clone(&self) -> TaskDescription
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 moreAuto Trait Implementations§
impl Freeze for TaskDescription
impl !RefUnwindSafe for TaskDescription
impl Send for TaskDescription
impl Sync for TaskDescription
impl Unpin for TaskDescription
impl !UnwindSafe for TaskDescription
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 moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request