mirror of
https://github.com/apache/impala.git
synced 2026-01-06 06:01:03 -05:00
This makes it easier to switch between our branches and a no-op if for those of us staying on CDH4. Change-Id: Ic07eb8a7ba7e48db118c06c221aabe5e124f3bfb Reviewed-on: http://gerrit.ent.cloudera.com:8080/1033 Reviewed-by: Alex Behm <alex.behm@cloudera.com> Tested-by: Nong Li <nong@cloudera.com>
14 lines
384 B
Bash
Executable File
14 lines
384 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright (c) 2012 Cloudera, Inc. All rights reserved.
|
|
|
|
# kill HBase, then DFS
|
|
$IMPALA_HOME/testdata/bin/kill-hbase.sh
|
|
$IMPALA_HOME/testdata/bin/kill-mini-dfs.sh
|
|
$IMPALA_HOME/testdata/bin/kill-mini-llama.sh
|
|
$IMPALA_HOME/testdata/bin/kill-hive-server.sh
|
|
|
|
# kill all impalad and statestored processes
|
|
killall -9 impalad
|
|
killall -9 statestored
|
|
killall -9 mini-impala-cluster
|