hdfs.cmd 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  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
  17. setlocal enabledelayedexpansion
  18. if not defined HADOOP_BIN_PATH (
  19. set HADOOP_BIN_PATH=%~dp0
  20. )
  21. if "%HADOOP_BIN_PATH:~-1%" == "\" (
  22. set HADOOP_BIN_PATH=%HADOOP_BIN_PATH:~0,-1%
  23. )
  24. @rem Determine log file name.
  25. @rem If we're being called by --service we need to use %2.
  26. @rem If we're being called with --config we need to use %3.
  27. @rem Otherwise use %1
  28. if "%1" == "--config" (
  29. set HADOOP_LOGFILE=hadoop-%3-%computername%.log
  30. ) else if "%2" == "" (
  31. set HADOOP_LOGFILE=hadoop-%1-%computername%.log
  32. ) else (
  33. set HADOOP_LOGFILE=hadoop-%2-%computername%.log
  34. )
  35. @rem if running as a service, log to (daily rolling) files instead of console
  36. if "%1" == "--service" (
  37. if not defined HADOOP_ROOT_LOGGER (
  38. set HADOOP_ROOT_LOGGER=INFO,DRFA
  39. )
  40. )
  41. set DEFAULT_LIBEXEC_DIR=%HADOOP_BIN_PATH%\..\libexec
  42. if not defined HADOOP_LIBEXEC_DIR (
  43. set HADOOP_LIBEXEC_DIR=%DEFAULT_LIBEXEC_DIR%
  44. )
  45. call %HADOOP_LIBEXEC_DIR%\hdfs-config.cmd %*
  46. if "%1" == "--config" (
  47. shift
  48. shift
  49. )
  50. if "%1" == "--loglevel" (
  51. shift
  52. shift
  53. )
  54. if "%1" == "--service" (
  55. set service_entry=true
  56. shift
  57. )
  58. :main
  59. if exist %HADOOP_CONF_DIR%\hadoop-env.cmd (
  60. call %HADOOP_CONF_DIR%\hadoop-env.cmd
  61. )
  62. set hdfs-command=%1
  63. call :make_command_arguments %*
  64. if not defined hdfs-command (
  65. goto print_usage
  66. )
  67. if %hdfs-command% == classpath (
  68. if not defined hdfs-command-arguments (
  69. @rem No need to bother starting up a JVM for this simple case.
  70. @echo %CLASSPATH%
  71. exit /b
  72. )
  73. )
  74. set hdfscommands=dfs namenode secondarynamenode journalnode zkfc datanode dfsadmin haadmin fsck balancer jmxget oiv oev fetchdt getconf groups snapshotDiff lsSnapshottableDir cacheadmin mover storagepolicies classpath crypto debug
  75. for %%i in ( %hdfscommands% ) do (
  76. if %hdfs-command% == %%i set hdfscommand=true
  77. )
  78. if defined hdfscommand (
  79. call :%hdfs-command%
  80. ) else (
  81. set CLASSPATH=%CLASSPATH%;%CD%
  82. set CLASS=%hdfs-command%
  83. )
  84. set java_arguments=%JAVA_HEAP_MAX% %HADOOP_OPTS% -classpath %CLASSPATH% %CLASS% %hdfs-command-arguments%
  85. if defined service_entry (
  86. call :makeServiceXml %java_arguments%
  87. ) else (
  88. call %JAVA% %java_arguments%
  89. )
  90. goto :eof
  91. :namenode
  92. set CLASS=org.apache.hadoop.hdfs.server.namenode.NameNode
  93. set HADOOP_OPTS=%HADOOP_OPTS% %HADOOP_NAMENODE_OPTS%
  94. goto :eof
  95. :journalnode
  96. set CLASS=org.apache.hadoop.hdfs.qjournal.server.JournalNode
  97. set HADOOP_OPTS=%HADOOP_OPTS% %HADOOP_JOURNALNODE_OPTS%
  98. goto :eof
  99. :zkfc
  100. set CLASS=org.apache.hadoop.hdfs.tools.DFSZKFailoverController
  101. set HADOOP_OPTS=%HADOOP_OPTS% %HADOOP_ZKFC_OPTS%
  102. goto :eof
  103. :secondarynamenode
  104. set CLASS=org.apache.hadoop.hdfs.server.namenode.SecondaryNameNode
  105. set HADOOP_OPTS=%HADOOP_OPTS% %HADOOP_SECONDARYNAMENODE_OPTS%
  106. goto :eof
  107. :datanode
  108. set CLASS=org.apache.hadoop.hdfs.server.datanode.DataNode
  109. set HADOOP_OPTS=%HADOOP_OPTS% -server %HADOOP_DATANODE_OPTS%
  110. goto :eof
  111. :dfs
  112. set CLASS=org.apache.hadoop.fs.FsShell
  113. set HADOOP_OPTS=%HADOOP_OPTS% %HADOOP_CLIENT_OPTS%
  114. goto :eof
  115. :dfsadmin
  116. set CLASS=org.apache.hadoop.hdfs.tools.DFSAdmin
  117. set HADOOP_OPTS=%HADOOP_OPTS% %HADOOP_CLIENT_OPTS%
  118. goto :eof
  119. :haadmin
  120. set CLASS=org.apache.hadoop.hdfs.tools.DFSHAAdmin
  121. set CLASSPATH=%CLASSPATH%;%TOOL_PATH%
  122. set HADOOP_OPTS=%HADOOP_OPTS% %HADOOP_CLIENT_OPTS%
  123. goto :eof
  124. :fsck
  125. set CLASS=org.apache.hadoop.hdfs.tools.DFSck
  126. set HADOOP_OPTS=%HADOOP_OPTS% %HADOOP_CLIENT_OPTS%
  127. goto :eof
  128. :balancer
  129. set CLASS=org.apache.hadoop.hdfs.server.balancer.Balancer
  130. set HADOOP_OPTS=%HADOOP_OPTS% %HADOOP_BALANCER_OPTS%
  131. goto :eof
  132. :jmxget
  133. set CLASS=org.apache.hadoop.hdfs.tools.JMXGet
  134. goto :eof
  135. :classpath
  136. set CLASS=org.apache.hadoop.util.Classpath
  137. goto :eof
  138. :oiv
  139. set CLASS=org.apache.hadoop.hdfs.tools.offlineImageViewer.OfflineImageViewerPB
  140. goto :eof
  141. :oev
  142. set CLASS=org.apache.hadoop.hdfs.tools.offlineEditsViewer.OfflineEditsViewer
  143. goto :eof
  144. :fetchdt
  145. set CLASS=org.apache.hadoop.hdfs.tools.DelegationTokenFetcher
  146. goto :eof
  147. :getconf
  148. set CLASS=org.apache.hadoop.hdfs.tools.GetConf
  149. goto :eof
  150. :groups
  151. set CLASS=org.apache.hadoop.hdfs.tools.GetGroups
  152. goto :eof
  153. :snapshotDiff
  154. set CLASS=org.apache.hadoop.hdfs.tools.snapshot.SnapshotDiff
  155. goto :eof
  156. :lsSnapshottableDir
  157. set CLASS=org.apache.hadoop.hdfs.tools.snapshot.LsSnapshottableDir
  158. goto :eof
  159. :cacheadmin
  160. set CLASS=org.apache.hadoop.hdfs.tools.CacheAdmin
  161. goto :eof
  162. :mover
  163. set CLASS=org.apache.hadoop.hdfs.server.mover.Mover
  164. set HADOOP_OPTS=%HADOOP_OPTS% %HADOOP_MOVER_OPTS%
  165. goto :eof
  166. :storagepolicies
  167. set CLASS=org.apache.hadoop.hdfs.tools.StoragePolicyAdmin
  168. goto :eof
  169. :crypto
  170. set CLASS=org.apache.hadoop.hdfs.tools.CryptoAdmin
  171. goto :eof
  172. :debug
  173. set CLASS=org.apache.hadoop.hdfs.tools.DebugAdmin
  174. goto :eof
  175. :makeServiceXml
  176. set arguments=%*
  177. @echo ^<service^>
  178. @echo ^<id^>%hdfs-command%^</id^>
  179. @echo ^<name^>%hdfs-command%^</name^>
  180. @echo ^<description^>This service runs Hadoop %hdfs-command%^</description^>
  181. @echo ^<executable^>%JAVA%^</executable^>
  182. @echo ^<arguments^>%arguments%^</arguments^>
  183. @echo ^</service^>
  184. goto :eof
  185. @rem This changes %1, %2 etc. Hence those cannot be used after calling this.
  186. :make_command_arguments
  187. if [%2] == [] goto :eof
  188. if "%1" == "--config" (
  189. shift
  190. shift
  191. )
  192. if "%1" == "--loglevel" (
  193. shift
  194. shift
  195. )
  196. if "%1" == "--service" (
  197. shift
  198. )
  199. shift
  200. set _hdfsarguments=
  201. :MakeCmdArgsLoop
  202. if [%1]==[] goto :EndLoop
  203. if not defined _hdfsarguments (
  204. set _hdfsarguments=%1
  205. ) else (
  206. set _hdfsarguments=!_hdfsarguments! %1
  207. )
  208. shift
  209. goto :MakeCmdArgsLoop
  210. :EndLoop
  211. set hdfs-command-arguments=%_hdfsarguments%
  212. goto :eof
  213. :print_usage
  214. @echo Usage: hdfs [--config confdir] [--loglevel loglevel] COMMAND
  215. @echo where COMMAND is one of:
  216. @echo dfs run a filesystem command on the file systems supported in Hadoop.
  217. @echo namenode -format format the DFS filesystem
  218. @echo secondarynamenode run the DFS secondary namenode
  219. @echo namenode run the DFS namenode
  220. @echo journalnode run the DFS journalnode
  221. @echo zkfc run the ZK Failover Controller daemon
  222. @echo datanode run a DFS datanode
  223. @echo dfsadmin run a DFS admin client
  224. @echo haadmin run a DFS HA admin client
  225. @echo fsck run a DFS filesystem checking utility
  226. @echo balancer run a cluster balancing utility
  227. @echo jmxget get JMX exported values from NameNode or DataNode.
  228. @echo oiv apply the offline fsimage viewer to an fsimage
  229. @echo oev apply the offline edits viewer to an edits file
  230. @echo fetchdt fetch a delegation token from the NameNode
  231. @echo getconf get config values from configuration
  232. @echo groups get the groups which users belong to
  233. @echo snapshotDiff diff two snapshots of a directory or diff the
  234. @echo current directory contents with a snapshot
  235. @echo lsSnapshottableDir list all snapshottable dirs owned by the current user
  236. @echo Use -help to see options
  237. @echo cacheadmin configure the HDFS cache
  238. @echo crypto configure HDFS encryption zones
  239. @echo mover run a utility to move block replicas across storage types
  240. @echo storagepolicies list/get/set block storage policies
  241. @echo.
  242. @echo Most commands print help when invoked w/o parameters.
  243. @rem There are also debug commands, but they don't show up in this listing.
  244. endlocal