hdfsproxy-daemon.sh
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:4k
源码类别:

网格计算

开发平台:

Java

  1. #!/usr/bin/env bash
  2. # Licensed to the Apache Software Foundation (ASF) under one or more
  3. # contributor license agreements.  See the NOTICE file distributed with
  4. # this work for additional information regarding copyright ownership.
  5. # The ASF licenses this file to You under the Apache License, Version 2.0
  6. # (the "License"); you may not use this file except in compliance with
  7. # the License.  You may obtain a copy of the License at
  8. #
  9. #     http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. # Runs a HdfsProxy as a daemon.
  17. #
  18. # Environment Variables
  19. #
  20. #   HDFSPROXY_CONF_DIR  Alternate conf dir. Default is ${HDFSPROXY_HOME}/conf.
  21. #   HDFSPROXY_LOG_DIR   Where log files are stored.  PWD by default.
  22. #   HDFSPROXY_MASTER    host:path where hdfsproxy code should be rsync'd from
  23. #   HDFSPROXY_PID_DIR   The pid files are stored. /tmp by default.
  24. #   HDFSPROXY_IDENT_STRING   A string representing this instance of hdfsproxy. $USER by default
  25. #   HDFSPROXY_NICENESS The scheduling priority for daemons. Defaults to 0.
  26. ##
  27. usage="Usage: hdfsproxy-daemon.sh [--config <conf-dir>] [--hosts hostlistfile] (start|stop) "
  28. # if no args specified, show usage
  29. if [ $# -le 1 ]; then
  30.   echo $usage
  31.   exit 1
  32. fi
  33. bin=`dirname "$0"`
  34. bin=`cd "$bin"; pwd`
  35. . "$bin"/hdfsproxy-config.sh
  36. # get arguments
  37. startStop=$1
  38. shift
  39. hdfsproxy_rotate_log ()
  40. {
  41.     log=$1;
  42.     num=5;
  43.     if [ -n "$2" ]; then
  44. num=$2
  45.     fi
  46.     if [ -f "$log" ]; then # rotate logs
  47. while [ $num -gt 1 ]; do
  48.     prev=`expr $num - 1`
  49.     [ -f "$log.$prev" ] && mv "$log.$prev" "$log.$num"
  50.     num=$prev
  51. done
  52. mv "$log" "$log.$num";
  53.     fi
  54. }
  55. if [ -f "${HDFSPROXY_CONF_DIR}/hdfsproxy-env.sh" ]; then
  56.   . "${HDFSPROXY_CONF_DIR}/hdfsproxy-env.sh"
  57. fi
  58. # get log directory
  59. if [ "$HDFSPROXY_LOG_DIR" = "" ]; then
  60.   export HDFSPROXY_LOG_DIR="$HDFSPROXY_HOME/logs"
  61. fi
  62. mkdir -p "$HDFSPROXY_LOG_DIR"
  63. if [ "$HDFSPROXY_PID_DIR" = "" ]; then
  64.   HDFSPROXY_PID_DIR=/tmp
  65. fi
  66. if [ "$HDFSPROXY_IDENT_STRING" = "" ]; then
  67.   export HDFSPROXY_IDENT_STRING="$USER"
  68. fi
  69. # some variables
  70. export HDFSPROXY_LOGFILE=hdfsproxy-$HDFSPROXY_IDENT_STRING-$HOSTNAME.log
  71. export HDFSPROXY_ROOT_LOGGER="INFO,DRFA"
  72. log=$HDFSPROXY_LOG_DIR/hdfsproxy-$HDFSPROXY_IDENT_STRING-$HOSTNAME.out
  73. pid=$HDFSPROXY_PID_DIR/hdfsproxy-$HDFSPROXY_IDENT_STRING.pid
  74. # Set default scheduling priority
  75. if [ "$HDFSPROXY_NICENESS" = "" ]; then
  76.     export HDFSPROXY_NICENESS=0
  77. fi
  78. case $startStop in
  79.   (start)
  80.     mkdir -p "$HDFSPROXY_PID_DIR"
  81.     if [ -f $pid ]; then
  82.       if kill -0 `cat $pid` > /dev/null 2>&1; then
  83.         echo hdfsproxy running as process `cat $pid`.  Stop it first.
  84.         exit 1
  85.       fi
  86.     fi
  87.     if [ "$HDFSPROXY_MASTER" != "" ]; then
  88.       echo rsync from $HDFSPROXY_MASTER
  89.       rsync -a -e ssh --delete --exclude=.svn --exclude='logs/*' --exclude='contrib/hod/logs/*' $HDFSPROXY_MASTER/ "$HDFSPROXY_HOME"
  90.     fi
  91.     hdfsproxy_rotate_log $log
  92.     echo starting hdfsproxy, logging to $log
  93.     cd "$HDFSPROXY_HOME"
  94.     nohup nice -n $HDFSPROXY_NICENESS "$HDFSPROXY_HOME"/bin/hdfsproxy --config $HDFSPROXY_CONF_DIR "$@" > "$log" 2>&1 < /dev/null &
  95.     echo $! > $pid
  96.     sleep 1; head "$log"
  97.     ;;
  98.           
  99.   (stop)
  100.     if [ -f $pid ]; then
  101.       if kill -0 `cat $pid` > /dev/null 2>&1; then
  102.         echo stopping hdfsproxy
  103.         kill `cat $pid`
  104.       else
  105.         echo no hdfsproxy to stop
  106.       fi
  107.     else
  108.       echo no hdfsproxy to stop
  109.     fi
  110.     ;;
  111.   (*)
  112.     echo $usage
  113.     exit 1
  114.     ;;
  115. esac