ENUM

ClusterDiskStatus

Description

Enum representing the cluster's knowledge of a disk state.

link GraphQL Schema definition

  • enum ClusterDiskStatus {
  • # Mounted disk.
  • ACTIVE
  • # Mounted disk continuously failing health checks.
  • FAILED
  • # Self encrypting disk in locked state (only for appliances supporting hardware
  • # encryption).
  • LOCKED
  • # Disk present in node table but not on the node.
  • MISSING
  • # Disk needs replacement. The disk is still readable but SDFS will drain the data
  • # gradually in the background.
  • PRE_REMOVAL
  • # Disk needs software repair (e.g, fsck) and is not writable.
  • PRE_REPAIR
  • # Disk finished draininig. User can unplug the disk.
  • READY_TO_REMOVE
  • # Disk explicitly removed from the cluster.
  • REMOVED
  • # Disk is under repair (e.g., fsck) and is not available. The expectation is that
  • # the disk will become available soon but is not guaranteed. Both read and write
  • # operations will not be allowed in this status.
  • REPAIR
  • # Disk with no ext4 partitions.
  • UNFORMATTED
  • # Unused.
  • UNKNOWN
  • }