mirror of
https://github.com/apache/impala.git
synced 2026-01-05 21:00:54 -05:00
Impala reserves resources from YARN via Llama and handles resources preemptions by cancelling affected queries. Adds the Impala Resource Broker for interacting with Llama. Refactors scheduler and coordinator to move fragment-to-host assignment logic into scheduler. Local test setup uses MiniLLama. Change-Id: Ic7b0fe43de52d30f4207b4e65cce7e6a294e54e1
15 lines
441 B
Bash
Executable File
15 lines
441 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-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
|