[][src]Struct isilon::models::JobJobSummarySummary

pub struct JobJobSummarySummary {
    pub cluster_is_degraded: bool,
    pub connected: bool,
    pub coordinator: i32,
    pub disconnected_nodes: Option<Vec<i32>>,
    pub down_or_read_only_nodes: bool,
    pub next_jid: i32,
    pub run_degraded: bool,
    pub stats_ready: bool,
}

Fields

cluster_is_degraded: bool

Whether the cluster is in a degraded state. Note this is from the perspective of the node handling the query, which might be different from another node.

connected: bool

Whether isi_job_d instances on all up nodes in the cluster are connected to the coordinator.

coordinator: i32

The devid of the job engine coordinator.

disconnected_nodes: Option<Vec<i32>>

If connected=false, this is the set of devids that are not connected to the coordinator.

down_or_read_only_nodes: bool

Whether the cluster has any down or read-only nodes. These nodes are not considered in the connected property.

next_jid: i32

The job ID to be assigned to the next job.

run_degraded: bool

Whether the job engine would allow most jobs to run even when the cluster is in a degraded state.

stats_ready: bool

Whether the coordinator has recently gathered statistics for all nodes in the cluster.

Trait Implementations

impl Debug for JobJobSummarySummary[src]

impl Serialize for JobJobSummarySummary[src]

impl<'de> Deserialize<'de> for JobJobSummarySummary[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T