Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
-
Reviewed
Description
Currently HdfsServerConstants.java have following constants,
String HOT_STORAGE_POLICY_NAME = "HOT"; String WARM_STORAGE_POLICY_NAME = "WARM"; String COLD_STORAGE_POLICY_NAME = "COLD";
and HdfsConstants.java have the following
public static final String MEMORY_STORAGE_POLICY_NAME = "LAZY_PERSIST"; public static final String ALLSSD_STORAGE_POLICY_NAME = "ALL_SSD"; public static final String ONESSD_STORAGE_POLICY_NAME = "ONE_SSD";
It would be better to move all these to one place HdfsConstants.java, which client APIs also could access since this presents in hdfs-client module.