metadata: annotations: prow.k8s.io/context: pull-sanitizer-tsan prow.k8s.io/job: pull-sanitizer-tsan creationTimestamp: "2026-05-21T12:13:02Z" generation: 10 labels: created-by-prow: "true" event-GUID: 68626ce0-550e-11f1-8555-dec1fa734e86 prow.k8s.io/build-id: "2057434488761225216" prow.k8s.io/context: pull-sanitizer-tsan prow.k8s.io/id: efbf4c72-c016-467f-8843-f6f906ca662a prow.k8s.io/is-optional: "true" prow.k8s.io/job: pull-sanitizer-tsan prow.k8s.io/refs.base_ref: release-fts-202602 prow.k8s.io/refs.org: pingcap prow.k8s.io/refs.pull: "10855" prow.k8s.io/refs.repo: tiflash prow.k8s.io/type: presubmit name: efbf4c72-c016-467f-8843-f6f906ca662a namespace: apps resourceVersion: "1779371780019871007" uid: ff505ae8-22c5-4520-b12b-daa3eae595d8 spec: agent: kubernetes cluster: default context: pull-sanitizer-tsan decoration_config: gcs_configuration: bucket: gs://prow-tidb-logs path_strategy: explicit gcs_credentials_secret: gcs-credentials ssh_host_fingerprints: - github.com ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl - github.com ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEmKSENjQEezOmxkZMy7opKgwFB9nkt5YRrYMjNuG5N87uRgg6CLrbo5wAdT/y6v0mKV0U2w0WZ2YB/++Tpockg= - github.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCj7ndNxQowgcQnjshcLrqPEiiphnt+VTTvDP6mHBL9j1aNUkY4Ue1gvwnGLVlOhGeYrnZaMgRK6+PKCUXaDbC7qtbW8gIkhL7aGCsOr/C56SJMy/BCZfxd1nWzAOxSDPgVsmerOBYfNqltV9/hWCqBywINIR+5dIg6JTJ72pcEpEjcYgXkE2YEFXV1JHnsKgbLWNlhScqb2UmyRkQyytRLtL+38TGxkxCflmO+5Z8CSSNY7GidjMIZ7Q4zMjA2n1nGrlTDkzwDCsw+wqFPGQA179cnfGWOWRVruj16z6XyvxvjJwbz0wQZ75XK5tKSb7FNyeIEs4TT4jk+S4dhPeAUC5y+bDYirYgM4GC7uEnztnZyaVWQ7B381AK4Qdrwt51ZqExKbQpTUNn+EjqoTwvqNj4kqx5QUCI0ThS/YkOxJCXmPUWZbhjpCg56i+2aB6CmK2JGhn57K5mj0MNdBXA4/WnwH6XoPWJzK5Nyu2zB3nAZp+S5hpQs+p1vN1/wsjk= ssh_key_secrets: - github-ssh-secret timeout: 3h0m0s utility_images: clonerefs: gcr.io/k8s-prow/clonerefs:v20230601-43eb1068e4 entrypoint: gcr.io/k8s-prow/entrypoint:v20230601-43eb1068e4 initupload: gcr.io/k8s-prow/initupload:v20230601-43eb1068e4 sidecar: gcr.io/k8s-prow/sidecar:v20230601-43eb1068e4 job: pull-sanitizer-tsan namespace: prow-test-pods pod_spec: affinity: nodeAffinity: requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - key: kubernetes.io/arch operator: In values: - amd64 containers: - args: - | set -euo pipefail if ! command -v ccache >/dev/null 2>&1; then yum install -y ccache fi sanitizer="${SANITIZER:-}" if [[ "${sanitizer}" != "ASan" && "${sanitizer}" != "TSan" ]]; then echo "unsupported sanitizer: ${sanitizer}" >&2 exit 1 fi run_with_sanitizer_runtime() { "$@" } if [[ "${sanitizer}" == "TSan" ]] && ! command -v setarch >/dev/null 2>&1; then echo "setarch is required for TSan runtime on this job" >&2 exit 1 fi if [[ "${sanitizer}" == "TSan" ]] && command -v setarch >/dev/null 2>&1; then arch_name="$(uname -m)" run_with_sanitizer_runtime() { setarch "${arch_name}" -R "$@" } fi build_jobs="20" test_workers="16" if [[ "${sanitizer}" == "TSan" ]]; then test_workers="10" fi repo_root="$(pwd)" export RUSTUP_HOME="${repo_root}/.rustup-${sanitizer}" export CARGO_HOME="${repo_root}/.cargo-${sanitizer}" unset RUSTUP_TOOLCHAIN rm -rf "${repo_root}/.ccache" "${repo_root}/build-${sanitizer}" "${RUSTUP_HOME}" "${CARGO_HOME}" mkdir -p "${repo_root}/build-${sanitizer}" "${RUSTUP_HOME}" "${CARGO_HOME}" echo "RUSTUP_HOME=${RUSTUP_HOME}" echo "CARGO_HOME=${CARGO_HOME}" echo "rustup active toolchain before install:" rustup show active-toolchain || true for attempt in 1 2 3; do if rustup toolchain install; then break fi if [[ "${attempt}" == "3" ]]; then echo "failed to install rust toolchain after ${attempt} attempts" >&2 exit 1 fi rm -rf "${RUSTUP_HOME}/tmp" "${RUSTUP_HOME}/downloads" sleep "$((attempt * 10))" done rustup show rustup which cargo cargo --version ccache -o cache_dir="$(realpath "${repo_root}/.ccache")" || true ccache -o max_size=2G || true ccache -o limit_multiple=0.99 || true ccache -o hash_dir=false || true ccache -o compression=true || true ccache -o compression_level=6 || true ccache -z || true ( cd "${repo_root}/build-${sanitizer}" cmake "${repo_root}" \ -DCMAKE_CXX_COMPILER=clang++ \ -DCMAKE_C_COMPILER=clang \ -DENABLE_TESTS=ON \ -DCMAKE_BUILD_TYPE="${sanitizer}" \ -DUSE_CCACHE=ON \ -DRUN_HAVE_STD_REGEX=0 \ -DCMAKE_PREFIX_PATH=/usr/local \ -DUSE_GM_SSL=0 \ -GNinja run_with_sanitizer_runtime ninja -j"${build_jobs}" gtests_dbms gtests_libcommon gtests_libdaemon ) rm -rf /tests /tiflash ln -s "${repo_root}/tests" /tests mkdir -p /tiflash cp "${repo_root}/build-${sanitizer}/dbms/gtests_dbms" /tiflash cp "${repo_root}/build-${sanitizer}/libs/libcommon/src/tests/gtests_libcommon" /tiflash cp "${repo_root}/build-${sanitizer}/libs/libdaemon/src/tests/gtests_libdaemon" /tiflash source /tests/docker/util.sh show_env UBSAN_OPTIONS=print_stacktrace=1:halt_on_error=0 \ LSAN_OPTIONS=suppressions=/tests/sanitize/asan.suppression \ TSAN_OPTIONS="suppressions=/tests/sanitize/tsan.suppression" \ ENV_VARS_PATH=/tests/docker/_env.sh \ NPROC="${test_workers}" \ run_with_sanitizer_runtime /tests/run-gtest.sh command: - /bin/bash - -ce env: - name: SANITIZER value: TSan image: ghcr.io/pingcap-qe/cd/builders/tiflash:v2025.8.10-2-gc9e3144-centos7 imagePullPolicy: Always name: run-sanitizer resources: limits: cpu: "24" memory: 64Gi requests: cpu: "24" memory: 64Gi securityContext: privileged: true prowjob_defaults: tenant_id: GlobalDefaultID refs: base_link: https://github.com/pingcap/tiflash/commit/317f5f60c569358daef897d30484506868cd3f6d base_ref: release-fts-202602 base_sha: 317f5f60c569358daef897d30484506868cd3f6d clone_uri: git@github.com:pingcap/tiflash.git org: pingcap pulls: - author: JinheLin author_link: https://github.com/JinheLin commit_link: https://github.com/pingcap/tiflash/pull/10855/commits/30d6b296f1d058b9ff85d549ebc76c4fcc0b63b5 head_ref: update-release-fts-202602-tici link: https://github.com/pingcap/tiflash/pull/10855 number: 10855 sha: 30d6b296f1d058b9ff85d549ebc76c4fcc0b63b5 title: 'contrib: update tici' repo: tiflash repo_link: https://github.com/pingcap/tiflash report: true rerun_command: /test pull-sanitizer-tsan type: presubmit status: build_id: "2057434488761225216" completionTime: "2026-05-21T13:56:17Z" description: Job failed. pendingTime: "2026-05-21T12:13:02Z" pod_name: efbf4c72-c016-467f-8843-f6f906ca662a prev_report_states: gcsk8sreporter: failure gcsreporter: failure github-reporter: failure startTime: "2026-05-21T12:13:02Z" state: failure url: https://prow.tidb.net/view/gs/prow-tidb-logs/pr-logs/pull/pingcap_tiflash/10855/pull-sanitizer-tsan/2057434488761225216