hadoop.cmd 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  1. @echo off
  2. @rem Licensed to the Apache Software Foundation (ASF) under one or more
  3. @rem contributor license agreements. See the NOTICE file distributed with
  4. @rem this work for additional information regarding copyright ownership.
  5. @rem The ASF licenses this file to You under the Apache License, Version 2.0
  6. @rem (the "License"); you may not use this file except in compliance with
  7. @rem the License. You may obtain a copy of the License at
  8. @rem
  9. @rem http://www.apache.org/licenses/LICENSE-2.0
  10. @rem
  11. @rem Unless required by applicable law or agreed to in writing, software
  12. @rem distributed under the License is distributed on an "AS IS" BASIS,
  13. @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. @rem See the License for the specific language governing permissions and
  15. @rem limitations under the License.
  16. @rem This script runs the hadoop core commands.
  17. @rem Environment Variables
  18. @rem
  19. @rem JAVA_HOME The java implementation to use. Overrides JAVA_HOME.
  20. @rem
  21. @rem HADOOP_CLASSPATH Extra Java CLASSPATH entries.
  22. @rem
  23. @rem HADOOP_USER_CLASSPATH_FIRST When defined, the HADOOP_CLASSPATH is
  24. @rem added in the beginning of the global
  25. @rem classpath. Can be defined, for example,
  26. @rem by doing
  27. @rem export HADOOP_USER_CLASSPATH_FIRST=true
  28. @rem
  29. @rem HADOOP_USE_CLIENT_CLASSLOADER When defined, HADOOP_CLASSPATH and the
  30. @rem jar as the hadoop jar argument are
  31. @rem handled by a separate isolated client
  32. @rem classloader. If it is set,
  33. @rem HADOOP_USER_CLASSPATH_FIRST is
  34. @rem ignored. Can be defined by doing
  35. @rem export HADOOP_USE_CLIENT_CLASSLOADER=true
  36. @rem
  37. @rem HADOOP_CLIENT_CLASSLOADER_SYSTEM_CLASSES
  38. @rem When defined, it overrides the default
  39. @rem definition of system classes for the
  40. @rem client classloader when
  41. @rem HADOOP_USE_CLIENT_CLASSLOADER is
  42. @rem enabled. Names ending in '.' (period)
  43. @rem are treated as package names, and names
  44. @rem starting with a '-' are treated as
  45. @rem negative matches. For example,
  46. @rem export HADOOP_CLIENT_CLASSLOADER_SYSTEM_CLASSES="-org.apache.hadoop.UserClass,java.,javax.,org.apache.hadoop."
  47. @rem
  48. @rem HADOOP_HEAPSIZE The maximum amount of heap to use, in MB.
  49. @rem Default is 1000.
  50. @rem
  51. @rem HADOOP_OPTS Extra Java runtime options.
  52. @rem
  53. @rem HADOOP_CLIENT_OPTS when the respective command is run.
  54. @rem HADOOP_{COMMAND}_OPTS etc HADOOP_JT_OPTS applies to JobTracker
  55. @rem for e.g. HADOOP_CLIENT_OPTS applies to
  56. @rem more than one command (fs, dfs, fsck,
  57. @rem dfsadmin etc)
  58. @rem
  59. @rem HADOOP_CONF_DIR Alternate conf dir. Default is ${HADOOP_HOME}/conf.
  60. @rem
  61. @rem HADOOP_ROOT_LOGGER The root appender. Default is INFO,console
  62. @rem
  63. if not defined HADOOP_BIN_PATH (
  64. set HADOOP_BIN_PATH=%~dp0
  65. )
  66. if "%HADOOP_BIN_PATH:~-1%" == "\" (
  67. set HADOOP_BIN_PATH=%HADOOP_BIN_PATH:~0,-1%
  68. )
  69. call :updatepath %HADOOP_BIN_PATH%
  70. :main
  71. setlocal enabledelayedexpansion
  72. set DEFAULT_LIBEXEC_DIR=%HADOOP_BIN_PATH%\..\libexec
  73. if not defined HADOOP_LIBEXEC_DIR (
  74. set HADOOP_LIBEXEC_DIR=%DEFAULT_LIBEXEC_DIR%
  75. )
  76. call %HADOOP_LIBEXEC_DIR%\hadoop-config.cmd %*
  77. if "%1" == "--config" (
  78. shift
  79. shift
  80. )
  81. if "%1" == "--loglevel" (
  82. shift
  83. shift
  84. )
  85. set hadoop-command=%1
  86. if not defined hadoop-command (
  87. goto print_usage
  88. )
  89. call :make_command_arguments %*
  90. set hdfscommands=namenode secondarynamenode datanode dfs dfsadmin fsck balancer fetchdt oiv dfsgroups
  91. for %%i in ( %hdfscommands% ) do (
  92. if %hadoop-command% == %%i set hdfscommand=true
  93. )
  94. if defined hdfscommand (
  95. @echo DEPRECATED: Use of this script to execute hdfs command is deprecated. 1>&2
  96. @echo Instead use the hdfs command for it. 1>&2
  97. if exist %HADOOP_HDFS_HOME%\bin\hdfs.cmd (
  98. call %HADOOP_HDFS_HOME%\bin\hdfs.cmd %*
  99. goto :eof
  100. ) else if exist %HADOOP_HOME%\bin\hdfs.cmd (
  101. call %HADOOP_HOME%\bin\hdfs.cmd %*
  102. goto :eof
  103. ) else (
  104. echo HADOOP_HDFS_HOME not found!
  105. goto :eof
  106. )
  107. )
  108. set mapredcommands=pipes job queue mrgroups mradmin jobtracker tasktracker
  109. for %%i in ( %mapredcommands% ) do (
  110. if %hadoop-command% == %%i set mapredcommand=true
  111. )
  112. if defined mapredcommand (
  113. @echo DEPRECATED: Use of this script to execute mapred command is deprecated. 1>&2
  114. @echo Instead use the mapred command for it. 1>&2
  115. if exist %HADOOP_MAPRED_HOME%\bin\mapred.cmd (
  116. call %HADOOP_MAPRED_HOME%\bin\mapred.cmd %*
  117. goto :eof
  118. ) else if exist %HADOOP_HOME%\bin\mapred.cmd (
  119. call %HADOOP_HOME%\bin\mapred.cmd %*
  120. goto :eof
  121. ) else (
  122. echo HADOOP_MAPRED_HOME not found!
  123. goto :eof
  124. )
  125. )
  126. if %hadoop-command% == classpath (
  127. if not defined hadoop-command-arguments (
  128. @rem No need to bother starting up a JVM for this simple case.
  129. @echo %CLASSPATH%
  130. exit /b
  131. )
  132. ) else if %hadoop-command% == jnipath (
  133. echo !PATH!
  134. exit /b
  135. )
  136. set corecommands=fs version jar checknative conftest distch distcp daemonlog archive classpath credential kerbname key trace
  137. for %%i in ( %corecommands% ) do (
  138. if %hadoop-command% == %%i set corecommand=true
  139. )
  140. if defined corecommand (
  141. call :%hadoop-command%
  142. ) else (
  143. set CLASSPATH=%CLASSPATH%;%CD%
  144. set CLASS=%hadoop-command%
  145. )
  146. set path=%PATH%;%HADOOP_BIN_PATH%
  147. @rem Always respect HADOOP_OPTS and HADOOP_CLIENT_OPTS
  148. set HADOOP_OPTS=%HADOOP_OPTS% %HADOOP_CLIENT_OPTS%
  149. @rem make sure security appender is turned off
  150. if not defined HADOOP_SECURITY_LOGGER (
  151. set HADOOP_SECURITY_LOGGER=INFO,NullAppender
  152. )
  153. set HADOOP_OPTS=%HADOOP_OPTS% -Dhadoop.security.logger=%HADOOP_SECURITY_LOGGER%
  154. call %JAVA% %JAVA_HEAP_MAX% %HADOOP_OPTS% -classpath %CLASSPATH% %CLASS% %hadoop-command-arguments%
  155. exit /b %ERRORLEVEL%
  156. :fs
  157. set CLASS=org.apache.hadoop.fs.FsShell
  158. goto :eof
  159. :version
  160. set CLASS=org.apache.hadoop.util.VersionInfo
  161. goto :eof
  162. :jar
  163. if defined YARN_OPTS (
  164. @echo WARNING: Use "yarn jar" to launch YARN applications.
  165. ) else if defined YARN_CLIENT_OPTS (
  166. @echo WARNING: Use "yarn jar" to launch YARN applications.
  167. )
  168. set CLASS=org.apache.hadoop.util.RunJar
  169. goto :eof
  170. :checknative
  171. set CLASS=org.apache.hadoop.util.NativeLibraryChecker
  172. goto :eof
  173. :conftest
  174. set CLASS=org.apache.hadoop.util.ConfTest
  175. goto :eof
  176. :distch
  177. set CLASS=org.apache.hadoop.tools.DistCh
  178. set CLASSPATH=%CLASSPATH%;%TOOL_PATH%
  179. goto :eof
  180. :distcp
  181. set CLASS=org.apache.hadoop.tools.DistCp
  182. set CLASSPATH=%CLASSPATH%;%TOOL_PATH%
  183. goto :eof
  184. :daemonlog
  185. set CLASS=org.apache.hadoop.log.LogLevel
  186. goto :eof
  187. :archive
  188. set CLASS=org.apache.hadoop.tools.HadoopArchives
  189. set CLASSPATH=%CLASSPATH%;%TOOL_PATH%
  190. goto :eof
  191. :classpath
  192. set CLASS=org.apache.hadoop.util.Classpath
  193. goto :eof
  194. :credential
  195. set CLASS=org.apache.hadoop.security.alias.CredentialShell
  196. goto :eof
  197. :kerbname
  198. set CLASS=org.apache.hadoop.security.HadoopKerberosName
  199. goto :eof
  200. :key
  201. set CLASS=org.apache.hadoop.crypto.key.KeyShell
  202. goto :eof
  203. :trace
  204. set CLASS=org.apache.hadoop.tracing.TraceAdmin
  205. goto :eof
  206. :updatepath
  207. set path_to_add=%*
  208. set current_path_comparable=%path%
  209. set current_path_comparable=%current_path_comparable: =_%
  210. set current_path_comparable=%current_path_comparable:(=_%
  211. set current_path_comparable=%current_path_comparable:)=_%
  212. set path_to_add_comparable=%path_to_add%
  213. set path_to_add_comparable=%path_to_add_comparable: =_%
  214. set path_to_add_comparable=%path_to_add_comparable:(=_%
  215. set path_to_add_comparable=%path_to_add_comparable:)=_%
  216. for %%i in ( %current_path_comparable% ) do (
  217. if /i "%%i" == "%path_to_add_comparable%" (
  218. set path_to_add_exist=true
  219. )
  220. )
  221. set system_path_comparable=
  222. set path_to_add_comparable=
  223. if not defined path_to_add_exist path=%path_to_add%;%path%
  224. set path_to_add=
  225. goto :eof
  226. @rem This changes %1, %2 etc. Hence those cannot be used after calling this.
  227. :make_command_arguments
  228. if "%1" == "--config" (
  229. shift
  230. shift
  231. )
  232. if "%1" == "--loglevel" (
  233. shift
  234. shift
  235. )
  236. if [%2] == [] goto :eof
  237. shift
  238. set _arguments=
  239. :MakeCmdArgsLoop
  240. if [%1]==[] goto :EndLoop
  241. if not defined _arguments (
  242. set _arguments=%1
  243. ) else (
  244. set _arguments=!_arguments! %1
  245. )
  246. shift
  247. goto :MakeCmdArgsLoop
  248. :EndLoop
  249. set hadoop-command-arguments=%_arguments%
  250. goto :eof
  251. :print_usage
  252. @echo Usage: hadoop [--config confdir] [--loglevel loglevel] COMMAND
  253. @echo where COMMAND is one of:
  254. @echo fs run a generic filesystem user client
  255. @echo version print the version
  256. @echo jar ^<jar^> run a jar file
  257. @echo note: please use "yarn jar" to launch
  258. @echo YARN applications, not this command.
  259. @echo checknative [-a^|-h] check native hadoop and compression libraries availability
  260. @echo conftest validate configuration XML files
  261. @echo distch path:owner:group:permisson
  262. @echo distributed metadata changer
  263. @echo distcp ^<srcurl^> ^<desturl^> copy file or directories recursively
  264. @echo archive -archiveName NAME -p ^<parent path^> ^<src^>* ^<dest^> create a hadoop archive
  265. @echo classpath prints the class path needed to get the
  266. @echo Hadoop jar and the required libraries
  267. @echo credential interact with credential providers
  268. @echo jnipath prints the java.library.path
  269. @echo kerbname show auth_to_local principal conversion
  270. @echo key manage keys via the KeyProvider
  271. @echo trace view and modify Hadoop tracing settings
  272. @echo daemonlog get/set the log level for each daemon
  273. @echo or
  274. @echo CLASSNAME run the class named CLASSNAME
  275. @echo.
  276. @echo Most commands print help when invoked w/o parameters.
  277. endlocal