Jan

Results 157 comments of Jan

> GCC 13 is still the same. Any workaround found? Stumbled upon the same issue with g++-13.2. One workaround is to adjust the CMAKE_CXX_FLAGS in your CMakeLists.txt when compiling with...

Jenkins performance runs: https://jenkins.arangodb.biz/view/Performance/job/perf-simple-branch/99/ https://jenkins.arangodb.biz/view/Performance/job/perf-simple-branch/100/

Regarding the missing `v8` module: Initially all git submodules may be missing after a fresh `git checkout`. Or some newly added git submodules may be adding after a `git pull`....

Specifically, I am using all these cmake options to ensure that the entire toolchain uses clang tools and not the gcc ones: ``` -DCMAKE_C_COMPILER=clang-16 -DCMAKE_CXX_COMPILER=clang++-16 -DCMAKE_C_COMPILER_AR="/usr/bin/llvm-ar-16" -DCMAKE_CXX_COMPILER_AR="/usr/bin/llvm-ar-16" -DCMAKE_C_COMPILER_RANLIB="/usr/bin/llvm-ranlib-16" -DCMAKE_CXX_COMPILER_RANLIB="/usr/bin/llvm-ranlib-16" -DCMAKE_EXE_LINKER_FLAGS="-fuse-ld=lld-16"...

The error happens when there is no more capacity in the RocksDB block cache, and no other data in the block cache shard can be freed. Can you try setting...

Are you sure that the config file is being used, i.e. that the _right_ config file was modified? Because the option is supposed to work just fine, and if it...

@matcho : It's a bit hard to tell from just the execution plan where the query spends most of its time. Can you also attach the _profile_ output of the...

@matcho : the number of execution plans can be limited globally by adjusting the server startup option `--query.optimizer-max-plans`. That startup option defaults to 128, which means that the optimizer is...