mirror of
https://github.com/apache/impala.git
synced 2025-12-31 06:02:51 -05:00
This should allow individual service components, such as a single nodemanager, to be shutdown for failure testing. The mini-cluster bundled with hadoop is a single process that does not expose the ability to control individual roles. Now each role can be controlled and configured independently of the others. Change-Id: Ic1d42e024226c6867e79916464d184fce886d783 Reviewed-on: http://gerrit.ent.cloudera.com:8080/1432 Tested-by: Casey Ching <casey@cloudera.com> Reviewed-by: Casey Ching <casey@cloudera.com> Reviewed-on: http://gerrit.ent.cloudera.com:8080/2297 Reviewed-by: Ishaan Joshi <ishaan@cloudera.com> Tested-by: Ishaan Joshi <ishaan@cloudera.com>
15 lines
416 B
Bash
Executable File
15 lines
416 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright (c) 2012 Cloudera, Inc. All rights reserved.
|
|
|
|
# kill HBase, then MiniLlama (which includes a MiniDfs, a Yarn RM several NMs)
|
|
$IMPALA_HOME/testdata/bin/kill-hbase.sh
|
|
$IMPALA_HOME/testdata/bin/kill-mini-dfs.sh
|
|
$IMPALA_HOME/testdata/bin/kill-hive-server.sh
|
|
|
|
|
|
# kill all impalad and statestored processes
|
|
killall -9 impalad
|
|
killall -9 statestored
|
|
killall -9 catalogd
|
|
killall -9 mini-impala-cluster
|