Files
impala/testdata/bin/kill-hive-server.sh
Lenni Kuff 1e25c98fb4 Test data loading framework improvements
This change includes a number of improvements for the test data loading framework:
* Named sections for schema template definitions
* Removal of uneeded sections from schema template definitions (ex. ANALYZE TABLE)
* More granular data loading via table name filters
* Improved robustness in detecting failed data loads
* Table level constraints for specific file formats
* Re-written compute stats script
2014-01-08 10:46:49 -08:00

6 lines
138 B
Bash
Executable File

#!/bin/sh
# Copyright (c) 2012 Cloudera, Inc. All rights reserved.
jps -m | grep HiveServer | awk '{print $1}' | xargs kill -9;
sleep 1;