cmd-hadoop-cluster
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:2k
源码类别:

网格计算

开发平台:

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. # Run commands on master or specified node of a running Hadoop EC2 cluster.
  17. # if no args specified, show usage
  18. if [ $# = 0 ]; then
  19.   echo "Command required!"
  20.   exit 1
  21. fi
  22. # get arguments
  23. COMMAND="$1"
  24. shift
  25. # get group
  26. CLUSTER="$1"
  27. shift
  28. if [ -z $CLUSTER ]; then
  29.   echo "Cluster name or instance id required!"
  30.   exit -1
  31. fi
  32. # Import variables
  33. bin=`dirname "$0"`
  34. bin=`cd "$bin"; pwd`
  35. . "$bin"/hadoop-ec2-env.sh
  36. if [[ $CLUSTER == i-* ]]; then
  37.   HOST=`ec2-describe-instances $CLUSTER | grep running | awk '{print $4}'`
  38.   [ -z $HOST ] && echo "Instance still pending or no longer running: $CLUSTER" && exit -1
  39. else
  40.   [ ! -f $MASTER_IP_PATH ] && echo "Wrong group name, or cluster not launched! $CLUSTER" && exit -1
  41.   HOST=`cat $MASTER_IP_PATH`
  42. fi
  43. if [ "$COMMAND" = "login" ] ; then
  44.   echo "Logging in to host $HOST."
  45.   ssh $SSH_OPTS "root@$HOST"
  46. elif [ "$COMMAND" = "proxy" ] ; then
  47.   echo "Proxying to host $HOST via local port 6666"
  48.   echo "Gangia:     http://$HOST/ganglia"
  49.   echo "JobTracker: http://$HOST:50030/"
  50.   echo "NameNode:   http://$HOST:50070/"
  51.   ssh $SSH_OPTS -D 6666 -N "root@$HOST"
  52. elif [ "$COMMAND" = "push" ] ; then
  53.   echo "Pushing $1 to host $HOST."
  54.   scp $SSH_OPTS -r $1 "root@$HOST:"
  55. elif [ "$COMMAND" = "screen" ] ; then
  56.   echo "Logging in and attaching screen on host $HOST."
  57.   ssh $SSH_OPTS -t "root@$HOST" 'screen -D -R'
  58. else
  59.   echo "Executing command on host $HOST."
  60.   ssh $SSH_OPTS -t "root@$HOST" "$COMMAND"
  61. fi