metadata: annotations: prow.k8s.io/context: pull-sanitizer-tsan prow.k8s.io/job: pull-sanitizer-tsan creationTimestamp: "2026-04-22T09:45:09Z" generation: 10 labels: created-by-prow: "true" event-GUID: ad8a9330-3e28-11f1-84d4-49287b37669d prow.k8s.io/build-id: "2046888027946487808" prow.k8s.io/context: pull-sanitizer-tsan prow.k8s.io/id: ce6f40e7-cab4-4060-9976-8030479ebd70 prow.k8s.io/job: pull-sanitizer-tsan prow.k8s.io/refs.base_ref: master prow.k8s.io/refs.org: pingcap prow.k8s.io/refs.pull: "10807" prow.k8s.io/refs.repo: tiflash prow.k8s.io/type: presubmit name: ce6f40e7-cab4-4060-9976-8030479ebd70 namespace: apps resourceVersion: "1776851711273663003" uid: 0411f635-abfe-454b-b945-d89d8e00f263 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="8" test_workers="8" if [[ "${sanitizer}" == "TSan" ]]; then build_jobs="6" test_workers="6" fi repo_root="$(pwd)" rm -rf "${repo_root}/.ccache" "${repo_root}/build-${sanitizer}" mkdir -p "${repo_root}/build-${sanitizer}" 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: "12" memory: 48Gi requests: cpu: "12" memory: 48Gi securityContext: privileged: true prowjob_defaults: tenant_id: GlobalDefaultID refs: base_link: https://github.com/pingcap/tiflash/commit/45331bfed44a05651122145939254ec2e0748a7f base_ref: master base_sha: 45331bfed44a05651122145939254ec2e0748a7f clone_uri: git@github.com:pingcap/tiflash.git org: pingcap pulls: - author: CalvinNeo author_link: https://github.com/CalvinNeo commit_link: https://github.com/pingcap/tiflash/pull/10807/commits/15f27830cd901c01fad2cfb77d5cfdf72b82678e head_ref: add-metrics-tici link: https://github.com/pingcap/tiflash/pull/10807 number: 10807 sha: 15f27830cd901c01fad2cfb77d5cfdf72b82678e title: 'metrics: improve getGCSafePointWithRetry metrics' repo: tiflash repo_link: https://github.com/pingcap/tiflash report: true rerun_command: /test pull-sanitizer-tsan type: presubmit status: build_id: "2046888027946487808" completionTime: "2026-04-22T09:55:10Z" description: Pod pending timeout. pendingTime: "2026-04-22T09:45:10Z" pod_name: ce6f40e7-cab4-4060-9976-8030479ebd70 prev_report_states: gcsk8sreporter: error gcsreporter: error github-reporter: error startTime: "2026-04-22T09:45:01Z" state: error url: https://prow.tidb.net/view/gs/prow-tidb-logs/pr-logs/pull/pingcap_tiflash/10807/pull-sanitizer-tsan/2046888027946487808