metadata: annotations: prow.k8s.io/context: pull-sanitizer-asan prow.k8s.io/job: pull-sanitizer-asan creationTimestamp: "2026-04-23T08:41:54Z" generation: 10 labels: created-by-prow: "true" event-GUID: 46aeccd0-3ef0-11f1-912c-2711f4f2f669 prow.k8s.io/build-id: "2047234498717814784" prow.k8s.io/context: pull-sanitizer-asan prow.k8s.io/id: 59e985d0-a13d-458f-b45e-ee3ed8cdf566 prow.k8s.io/is-optional: "true" prow.k8s.io/job: pull-sanitizer-asan prow.k8s.io/refs.base_ref: release-fts-202602 prow.k8s.io/refs.org: pingcap prow.k8s.io/refs.pull: "10812" prow.k8s.io/refs.repo: tiflash prow.k8s.io/retest: "true" prow.k8s.io/type: presubmit name: 59e985d0-a13d-458f-b45e-ee3ed8cdf566 namespace: apps resourceVersion: "1776935281533471007" uid: cb8773c9-7e93-49db-8f7a-2024d0e78230 spec: agent: kubernetes cluster: default context: pull-sanitizer-asan 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-asan 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: ASan 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 prowjob_defaults: tenant_id: GlobalDefaultID refs: base_link: https://github.com/pingcap/tiflash/commit/679d483314eaac7c42aade741a1d379ea9b34c28 base_ref: release-fts-202602 base_sha: 679d483314eaac7c42aade741a1d379ea9b34c28 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/10812/commits/bf540997291f5f8684983e56e564fa51dbd0abe0 head_ref: cp-202602 link: https://github.com/pingcap/tiflash/pull/10812 number: 10812 sha: bf540997291f5f8684983e56e564fa51dbd0abe0 title: 'metrics: improve getGCSafePointWithRetry metrics (#10807)' repo: tiflash repo_link: https://github.com/pingcap/tiflash report: true rerun_command: /test pull-sanitizer-asan type: presubmit status: build_id: "2047234498717814784" completionTime: "2026-04-23T09:07:59Z" description: Job failed. pendingTime: "2026-04-23T08:41:55Z" pod_name: 59e985d0-a13d-458f-b45e-ee3ed8cdf566 prev_report_states: gcsk8sreporter: failure gcsreporter: failure github-reporter: failure startTime: "2026-04-23T08:41:54Z" state: failure url: https://prow.tidb.net/view/gs/prow-tidb-logs/pr-logs/pull/pingcap_tiflash/10812/pull-sanitizer-asan/2047234498717814784