Improve description of HDFS configuration in PropertyKey
Closed this issue · 0 comments
calvinjia commented
In PropertyKey.java
, update
public static final PropertyKey UNDERFS_HDFS_CONFIGURATION =
new Builder(Name.UNDERFS_HDFS_CONFIGURATION)
.setDefaultValue(String.format(
"${%s}/core-site.xml:${%s}/hdfs-site.xml", Name.CONF_DIR, Name.CONF_DIR))
.setDescription("Location of the hdfs configuration file.")
.build();
to
public static final PropertyKey UNDERFS_HDFS_CONFIGURATION =
new Builder(Name.UNDERFS_HDFS_CONFIGURATION)
.setDefaultValue(String.format(
"${%s}/core-site.xml:${%s}/hdfs-site.xml", Name.CONF_DIR, Name.CONF_DIR))
.setDescription("Location of the HDFS configuration file.")
.build();