Closed mamiao closed 1 year ago
I fix it, Thanks
Sorry for coming so late to the party. I'm glad you fixed it. Could you please share with us what went wrong and how you solved the issue? It may help others running into the same problem 😉
Also, very importantly, when evaluating the performance of mutable, please make sure you are using a properly configured RELEASE build. Otherwise, timings are meaningless. The details how to configure the build can be found at https://github.com/mutable-org/mutable/blob/main/doc/setup.md
A TL;DR of the doc would be:
$ cmake -S . -B build/release \
-G Ninja \
-DCMAKE_C_COMPILER=clang \
-DCMAKE_CXX_COMPILER=clang++ \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_SHARED_LIBS=OFF \
-DENABLE_SANITIZERS=OFF \
-DENABLE_SANITY_FIELDS=OFF \
-DWITH_V8=ON
$ cmake --build build/release
Since I use a wrong json file.... : )
hi I have compiled the binary shell to test the tpc-h suite. Since the git source code do not have the tpc-h related table data file. So I use the https://gitlab.cs.uni-saarland.de/bigdata/mutable/tpch-dbgen to generate the data file.But when I specify the Benchmark.py to test the tpc-h suite, it gave me the error message as follows:
Since I have read the paper said that it already support Q1 Q3 Q6 Q12 Q14 queries, could you please help me to check the errors? Thanks