Member since
07-31-2014
9
Posts
0
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1828 | 10-21-2014 12:31 AM |
10-21-2014
12:31 AM
Impala TPC-DS test data generation by this project https://github.com/cloudera/impala-tpcds-kit
... View more
10-20-2014
06:04 PM
The url is in this script "https://github.com/cloudera/Impala/blob/master/bin/copy-test-data.sh".
... View more
10-20-2014
06:03 PM
The url is in this script "https://github.com/cloudera/Impala/blob/master/bin/copy-test-data.sh".
... View more
10-20-2014
06:02 PM
When I run "buildall.sh -nolean -testdata" I get no impala-data error,because the copy-test-data.sh run failure,the url "http://util-1.ent.cloudera.com/i..." cannot access is the reason,anyone can tell me where to get impala test data? Thanks!
... View more
10-19-2014
06:58 PM
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."
... View more
10-19-2014
06:01 PM
where can i to get impala test data?
... View more
Labels:
- Labels:
-
Apache Impala
10-19-2014
03:02 AM
where can i get impala test data?
... View more
Labels:
- Labels:
-
Apache Impala
07-31-2014
08:02 PM
I have solved this problem! Follow the steps below you need to install LLVM. wget http://llvm.org/releases/3.3/llvm-3.3.src.tar.gz tar xvzf llvm-3.2.src.tar.gz cd llvm-3.2.src/tools svn co llvm-project - Revision 214475: /cfe/tags/RELEASE_33/final clang cd ../projects svn co llvm-project - Revision 214475: /compiler-rt/tags/RELEASE_33/final compiler-rt cd .. ./configure --with-pic make -j4 REQUIRES_RTTI=1 sudo make install I forget this option (REQUIRES_RTTI=1) causes the problem.
... View more
07-31-2014
07:55 AM
I attempt to compile impala (1.4.0). My system is CentOS 6.2 boost 1.46.1, llvm 3.3, gcc 4.4.6 when I compile impala, error info: ../../build/debug/codegen/libCodeGen.a(llvm-codegen.cc.o ):( data.rel.ro_ZTIN4llvm18ValueMapCallbackVHIPKNS_5ValueENS_6WeakVHENS_14ValueMapConfigIS3_EEEE[_ZTIN4llvm18ValueMapCallbackVHIPKNS_5ValueENS_6WeakVHENS_14ValueMapConfigIS3_EEEE]+0x10): undefined reference to `typeinfo for llvm::CallbackVH' anyone have any ideas? Thanks a million!
... View more
Labels:
- Labels:
-
Apache Impala