source: proiecte/HadoopJUnit/hadoop-0.20.1/src/contrib/ec2/bin/terminate-hadoop-cluster @ 120

Last change on this file since 120 was 120, checked in by (none), 14 years ago

Added the mail files for the Hadoop JUNit Project

  • Property svn:executable set to *
File size: 1.6 KB
Line 
1#!/usr/bin/env bash
2
3# Licensed to the Apache Software Foundation (ASF) under one or more
4# contributor license agreements.  See the NOTICE file distributed with
5# this work for additional information regarding copyright ownership.
6# The ASF licenses this file to You under the Apache License, Version 2.0
7# (the "License"); you may not use this file except in compliance with
8# the License.  You may obtain a copy of the License at
9#
10#     http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17
18# Terminate a cluster.
19
20if [ -z $1 ]; then
21  echo "Cluster name required!"
22  exit -1
23fi
24
25CLUSTER=$1
26
27# Import variables
28bin=`dirname "$0"`
29bin=`cd "$bin"; pwd`
30. "$bin"/hadoop-ec2-env.sh
31
32# Finding Hadoop image
33HADOOP_INSTANCES=`ec2-describe-instances | awk '"RESERVATION" == $1 && ("'$CLUSTER'" == $4 || "'$CLUSTER_MASTER'" == $4), "RESERVATION" == $1 && ("'$CLUSTER'" != $4 && "'$CLUSTER_MASTER'" != $4)'`
34HADOOP_INSTANCES=`echo "$HADOOP_INSTANCES" | grep INSTANCE | grep running`
35
36[ -z "$HADOOP_INSTANCES" ] && echo "No running instances in cluster $CLUSTER." && exit 0
37
38echo "Running Hadoop instances:"
39echo "$HADOOP_INSTANCES"
40read -p "Terminate all instances? [yes or no]: " answer
41
42if [ "$answer" != "yes" ]; then
43  exit 1
44fi
45
46ec2-terminate-instances `echo "$HADOOP_INSTANCES" | awk '{print $2}'`
Note: See TracBrowser for help on using the repository browser.