You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I build velox and velox benchmark and try to run velox_sort_benchmark. However, I didn't get RealWorldData_stdSort test result.
I copied parquet file cp ./velox/dwio/parquet/tests/examples/str_sort.parquet ../examples/
./_build/release/velox/exec/benchmarks/velox_sort_benchmark
*** Aborted at 1733728790 (Unix time, try 'date -d @1733728790') ***
*** Signal 11 (SIGSEGV) (0x38) received by PID 296789 (pthread TID 0xef6666e77180) (linux TID 296789) (code: address not mapped to object), stack trace: ***
Segmentation fault (core dumped)
System information
It could be reproduced on x86 or arm platform.
Relevant logs
It seems that if fail when running this line:
std::vector<std::optional<StringView>>stdVector(querySigCol->size());
in RowContainerSortBenchmark.cpp
The text was updated successfully, but these errors were encountered:
It seems that when cast data->as()->childAt(0) to data->as()->childAt(0)->asFlatVector(), which is from VARCHAR to FlatVector, the value will be changed from size 1000 to null.
Bug description
I build velox and velox benchmark and try to run velox_sort_benchmark. However, I didn't get RealWorldData_stdSort test result.
I copied parquet file cp ./velox/dwio/parquet/tests/examples/str_sort.parquet ../examples/
./_build/release/velox/exec/benchmarks/velox_sort_benchmark
[...]chmarks/RowContainerSortBenchmark.cpp relative time/iter iters/s
BM_Int64_stdSort(100k_uni_noseq) 20.01ms 49.98
BM_Int64_timSort(100k_uni_noseq) 94.081% 21.27ms 47.02
BM_Int64_stdSort(10k_uni_noseq) 1.51ms 663.87
BM_Int64_timSort(10k_uni_noseq) 93.650% 1.61ms 621.71
BM_Int64_stdSort(1k_uni_noseq) 110.81us 9.02K
BM_Int64_timSort(1k_uni_noseq) 95.584% 115.93us 8.63K
*** Aborted at 1733728790 (Unix time, try 'date -d @1733728790') ***
*** Signal 11 (SIGSEGV) (0x38) received by PID 296789 (pthread TID 0xef6666e77180) (linux TID 296789) (code: address not mapped to object), stack trace: ***
Segmentation fault (core dumped)
System information
It could be reproduced on x86 or arm platform.
Relevant logs
The text was updated successfully, but these errors were encountered: