mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
de6547976b
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
28 lines
1.1 KiB
Bash
Executable File
28 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Tags: no-tsan, no-asan, no-msan, no-ubsan, no-fasttest
|
|
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
# NOTE: jemalloc is disabled under sanitizers
|
|
|
|
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
# shellcheck source=../shell_config.sh
|
|
. "$CURDIR"/../shell_config.sh
|
|
|
|
ncpus="$(getconf _NPROCESSORS_ONLN)"
|
|
|
|
# Disable them explicitly, to avoid failing on "Number of CPUs is not deterministic".
|
|
export MALLOC_CONF=abort_conf:false,abort:false
|
|
|
|
# Regression for:
|
|
#
|
|
# $ taskset --cpu-list 8 ./clickhouse local -q 'select 1'
|
|
# <jemalloc>: ../contrib/jemalloc/src/jemalloc.c:321: Failed assertion: "ind <= narenas_total_get()"
|
|
# Aborted (core dumped)
|
|
taskset --cpu-list $((ncpus-1)) ${CLICKHOUSE_LOCAL} -q 'select 1' 2>&1
|
|
|
|
# just in case something more complicated
|
|
taskset --cpu-list $((ncpus-1)) ${CLICKHOUSE_LOCAL} -q 'select count() from numbers_mt(100000000) settings max_threads=100' 2>&1
|
|
|
|
# this command should not fail because we specify narenas explicitly
|
|
# (even with abort_conf:true)
|
|
MALLOC_CONF=abort_conf:true,abort:false,narenas:$((ncpus)) taskset --cpu-list $((ncpus-1)) ${CLICKHOUSE_LOCAL} -q 'select 1' 2>&1
|