HADOOP-10140. Specification of HADOOP_CONF_DIR via the environment in hadoop_config.cmd. Contributed by Kiran Kumar M R.

This commit is contained in:
cnauroth 2015-02-11 16:36:09 -08:00
parent fe689d34a4
commit 67efab935e
2 changed files with 6 additions and 1 deletions

View File

@ -591,6 +591,9 @@ Release 2.7.0 - UNRELEASED
HADOOP-11579. Documentation for truncate. (shv)
HADOOP-10140. Specification of HADOOP_CONF_DIR via the environment in
hadoop_config.cmd. (Kiran Kumar M R via cnauroth)
OPTIMIZATIONS
HADOOP-11323. WritableComparator#compare keeps reference to byte array.

View File

@ -65,7 +65,9 @@ if not exist %HADOOP_HOME%\share\hadoop\common\hadoop-common-*.jar (
exit /b 1
)
set HADOOP_CONF_DIR=%HADOOP_HOME%\etc\hadoop
if not defined HADOOP_CONF_DIR (
set HADOOP_CONF_DIR=%HADOOP_HOME%\etc\hadoop
)
@rem
@rem Allow alternate conf dir location.