HDFS-7403. Inaccurate javadoc of BlockUCState#COMPLETE state. (Yongjun Zhang via yliu)
This commit is contained in:
parent
a4df9eed05
commit
555fa2d9d0
|
@ -473,6 +473,9 @@ Release 2.7.0 - UNRELEASED
|
||||||
|
|
||||||
HDFS-7374. Allow decommissioning of dead DataNodes. (Zhe Zhang)
|
HDFS-7374. Allow decommissioning of dead DataNodes. (Zhe Zhang)
|
||||||
|
|
||||||
|
HDFS-7403. Inaccurate javadoc of BlockUCState#COMPLETE state. (
|
||||||
|
Yongjun Zhang via yliu)
|
||||||
|
|
||||||
Release 2.6.1 - UNRELEASED
|
Release 2.6.1 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -280,8 +280,11 @@ public final class HdfsServerConstants {
|
||||||
static public enum BlockUCState {
|
static public enum BlockUCState {
|
||||||
/**
|
/**
|
||||||
* Block construction completed.<br>
|
* Block construction completed.<br>
|
||||||
* The block has at least one {@link ReplicaState#FINALIZED} replica,
|
* The block has at least the configured minimal replication number
|
||||||
* and is not going to be modified.
|
* of {@link ReplicaState#FINALIZED} replica(s), and is not going to be
|
||||||
|
* modified.
|
||||||
|
* NOTE, in some special cases, a block may be forced to COMPLETE state,
|
||||||
|
* even if it doesn't have required minimal replications.
|
||||||
*/
|
*/
|
||||||
COMPLETE,
|
COMPLETE,
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue