Underreplicated
Underreplicated is a term used in distributed storage systems, notably the Hadoop Distributed File System (HDFS), to describe a data block that has fewer replicas than the configured replication factor. Under such conditions, data availability and durability can be compromised because a fraction of the expected copies of the block are missing.
Underreplication can occur when DataNodes fail or are taken offline, during maintenance, or when network partitions
In HDFS, the NameNode monitors the replication counts of every block and marks a block as underreplicated
Remediation involves automatically re-creating missing replicas where possible. If enough healthy DataNodes are available, the system
Related concepts include over-replication, replication factor, NameNode, DataNode, and block management in distributed file systems.