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:
parent
fe689d34a4
commit
67efab935e
|
@ -591,6 +591,9 @@ Release 2.7.0 - UNRELEASED
|
||||||
|
|
||||||
HADOOP-11579. Documentation for truncate. (shv)
|
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
|
OPTIMIZATIONS
|
||||||
|
|
||||||
HADOOP-11323. WritableComparator#compare keeps reference to byte array.
|
HADOOP-11323. WritableComparator#compare keeps reference to byte array.
|
||||||
|
|
|
@ -65,7 +65,9 @@ if not exist %HADOOP_HOME%\share\hadoop\common\hadoop-common-*.jar (
|
||||||
exit /b 1
|
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
|
||||||
@rem Allow alternate conf dir location.
|
@rem Allow alternate conf dir location.
|
||||||
|
|
Loading…
Reference in New Issue