- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Why cann't I access the url which is "http://util-1.ent.cloudera.com/impala-test-data/"?
- Labels:
-
Apache Impala
Created on 10-19-2014 06:01 PM - edited 09-16-2022 02:10 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
where can i to get impala test data?
Created 10-21-2014 12:31 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Impala TPC-DS test data generation by this project https://github.com/cloudera/impala-tpcds-kit
Created 10-19-2014 06:58 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
set -e
set -u
echo "Copying data files from the share. 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_HOME/testdata/impala-data"
DATAsrc="http://util-1.ent.cloudera.com/impala-test-data/"
DATADST=${IMPALA_HOME}/testdata/impala-data
mkdir -p ${DATADST}
pushd ${DATADST}
# Download all .tar.gz files from the source, excluding the hostname and directory name.
# If the file already exists locally, skip the download.
wget -q --cut-dirs=1 --no-clobber -r --no-parent -nH --accept="*.tar.gz" ${DATASRC}
for filename in *.tar.gz
do
echo "Extracting: ${filename}"
tar -xzf ${filename}
done
popd
echo "Test data download successful."
Created 10-20-2014 06:04 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The url is in this script "https://github.com/cloudera/Impala/blob/master/bin/copy-test-data.sh".
Created 10-21-2014 12:31 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Impala TPC-DS test data generation by this project https://github.com/cloudera/impala-tpcds-kit
