HDFS-3802. StartupOption.name in HdfsServerConstants should be final. Contributed by Jing Zhao
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1373253 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5aeabcdf6f
commit
9dff7876d9
@ -394,6 +394,9 @@ Branch-2 ( Unreleased changes )
|
|||||||
HDFS-3765. namenode -initializeSharedEdits should be able to initialize
|
HDFS-3765. namenode -initializeSharedEdits should be able to initialize
|
||||||
all shared storages. (Vinay and todd via todd)
|
all shared storages. (Vinay and todd via todd)
|
||||||
|
|
||||||
|
HDFS-3802. StartupOption.name in HdfsServerConstants should be final.
|
||||||
|
(Jing Zhao via szetszwo)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
HDFS-2982. Startup performance suffers when there are many edit log
|
HDFS-2982. Startup performance suffers when there are many edit log
|
||||||
|
@ -60,7 +60,7 @@ static public enum StartupOption{
|
|||||||
FORCE("-force"),
|
FORCE("-force"),
|
||||||
NONINTERACTIVE("-nonInteractive");
|
NONINTERACTIVE("-nonInteractive");
|
||||||
|
|
||||||
private String name = null;
|
private final String name;
|
||||||
|
|
||||||
// Used only with format and upgrade options
|
// Used only with format and upgrade options
|
||||||
private String clusterId = null;
|
private String clusterId = null;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user