mirror of
https://github.com/apache/impala.git
synced 2025-12-25 02:03:09 -05:00
- Added perf counter utility - Added google perf tools - Added html data set - Added escape char test - Initial perf tuning
17 lines
555 B
Bash
Executable File
17 lines
555 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (c) 2011 Cloudera, Inc. All rights reserved.
|
|
|
|
bin=`dirname "$0"`
|
|
bin=`cd "$bin"; pwd`
|
|
. "$bin"/impala-config.sh
|
|
|
|
set -e
|
|
|
|
echo "Copying data files from the filer. If the file already exists locally, the files will not be copied. It's not check summing the files or anything like that, if you need to force a copy, delete the local directory: impala/testdata/data/hive_benchmark"
|
|
|
|
DATASRC="nong@haus01.sf.cloudera.com:impala-data"
|
|
DATADST=$IMPALA_HOME/testdata/hive_benchmark
|
|
mkdir -p $DATADST
|
|
|
|
scp -r $DATASRC/* $DATADST/
|