test/format (disagg.mode=multi, deletes enables) hash mismatch b/w leader & follower

XMLWordPrintableJSON

      format-stress-test-disagg-multi-delete-enabled-validation-2 on amazon2023-disagg-stress

      Host: i-0049bc0c57bd2c4f9
      Project: wiredtiger-disagg
      Commit: bdaa0078
      Please refer to BF(G) Playbook for instructions on handling BF and BFG tickets as well as Auto-Resolution Rules

      Task Logs:

      format-stress-test-disagg-multi-delete-enabled-validation-2 task_log

      Logs:

      Task logger initialized (agent version '2026-06-17a' from Evergreen build revision 'b802e8319710a09668e0dfa73fd669bac3268d0f').
      Starting task 'wiredtiger_disagg_amazon2023_disagg_stress_format_stress_test_disagg_multi_delete_enabled_validation_2_bdaa0078f5bab40634732d372f3e78b3e25d9f8d_26_06_19_05_39_09', execution 0.
      Running pre-task commands.
      Running command 'shell.exec' in function 'cleanup' (step 1 of 3) in block 'pre'.
      Finished command 'shell.exec' in function 'cleanup' (step 1 of 3) in block 'pre' in 2.348835ms.
      Running command 'expansions.update' in function 'setup environment' (step 2 of 3) in block 'pre'.
      Finished command 'expansions.update' in function 'setup environment' (step 2 of 3) in block 'pre' in 50.161µs.
      Running command 'shell.exec' in function 'pin mongo toolchain' (step 3 of 3) in block 'pre'.
      mongodbtoolchain 93d85cc1a00ca1d53fcc7d4ca790f19a4e5dd542 not installed, downloading...
      Autodetected Amazon Linux 2023 (OS_ID: amazon2023) on aarch64
      Autodetected DOWNLOAD_URL: https://mongodbtoolchain.build.10gen.cc/toolchain/amazon2023-arm64/x86_64/latest
      Overriding REVISION_ID, will download toolchain for 93d85cc1a00ca1d53fcc7d4ca790f19a4e5dd542
      Ensuring /opt/mongodbtoolchain/revisions exists and has correct ownership...
      Downloading toolchain to /data/mci/e9aa61c7d0ce6c4cc43845911e9888d7/tmp/tmp.0Z2nxbPvGl/mongodbtoolchain.tar.gz from https://mongodbtoolchain.build.10gen.cc/toolchain/amazon2023-arm64/x86_64/mongodbtoolchain-93d85cc1a00ca1d53fcc7d4ca790f19a4e5dd542.tar.gz
      Getting toolchain revision from archive...
      Checking downloaded archive integrity...
      Extracting toolchain revision 93d85cc1a00ca1d53fcc7d4ca790f19a4e5dd542 from archive...
      bash: line 171: return: can only `return' from a function or sourced script
      /opt/mongodbtoolchain/revisions/93d85cc1a00ca1d53fcc7d4ca790f19a4e5dd542/scripts/products.sh: line 13: /opt/mongodbtoolchain/revisions/93d85cc1a00ca1d53fcc7d4ca790f19a4e5dd542/scripts/installer.sh: No such file or directory
      Running post install script...
      Existing v2 found, uninstalling...
      Existing v3 found, uninstalling...
      Existing v4 found, uninstalling...
      Existing v5 found, uninstalling...
      Installing v2...
      Installing v3...
      Installing v4...
      Installing v5...
      Cleaning up...
      Finished command 'shell.exec' in function 'pin mongo toolchain' (step 3 of 3) in block 'pre' in 3m10.872744081s.
      Finished running pre-task commands in 3m10.875439947s.
      Running task commands.
      Running command 's3.get' in function 'fetch artifacts' (step 1 of 2).
      Fetching remote file 'wiredtiger/amazon2023-disagg-stress/bdaa0078f5bab40634732d372f3e78b3e25d9f8d/artifacts/compile_wiredtiger_disagg_amazon2023_disagg_stress_bdaa0078f5bab40634732d372f3e78b3e25d9f8d_26_06_19_05_39_09.tgz' from S3 bucket 'build_external' (attempt 1 of 5).
      Finished command 's3.get' in function 'fetch artifacts' (step 1 of 2) in 6.121977071s.
      Running command 'shell.exec' in function 'format test disagg' (step 2 of 2).
      export WT_TOPDIR=$(git rev-parse --show-toplevel)
      export WT_BUILDDIR=$WT_TOPDIR/cmake_build
      if [ "$OS" = "Windows_NT" ]; then
        export PATH=/cygdrive/c/python/Python311:/cygdrive/c/python/Python311/Scripts:$PATH
      else
        export PATH=/opt/mongodbtoolchain/v5/bin:$PATH
        export LD_LIBRARY_PATH=$WT_BUILDDIR
      fi
      # Create the common sanitizer options and export the specific sanitizer environment
      # variables.
      COMMON_SAN_OPTIONS="abort_on_error=1:disable_coredump=0"
      if [[ "" =~ ASan ]]; then
        export ASAN_OPTIONS="$COMMON_SAN_OPTIONS:unmap_shadow_on_exit=1"
        asan_lib=$(clang -print-file-name=libclang_rt.asan.so)
        [ -f "$asan_lib" ] || { echo "ERROR: libclang_rt.asan.so not found by clang"; exit 1; }
        export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$(dirname "$asan_lib")"
        export TESTUTIL_BYPASS_ASAN=1
      elif [[ "" =~ MSan ]]; then
        export MSAN_OPTIONS="$COMMON_SAN_OPTIONS:verbosity=3"
        export TESTUTIL_MSAN=1
      elif [[ "" =~ TSan ]]; then
        export TSAN_OPTIONS="$COMMON_SAN_OPTIONS:verbosity=3"
        export TESTUTIL_TSAN=1
      elif [[ "" =~ UBSan ]]; then
        export UBSAN_OPTIONS="$COMMON_SAN_OPTIONS:print_stacktrace=1"
        export TESTUTIL_UBSAN=1
      fi
      if [[ 1 -eq 1 ]]; then
        # The preloaded library should be downloaded/built during "configure wiredtiger" step.
        # DO NOT MOVE:This variable must be set in the same function(shell) that runs a test,
        # and as close as possible to the test execution, since it affects all the binaries.
        export LD_PRELOAD=$WT_TOPDIR/TCMALLOC_LIB/libtcmalloc.so
        if [ ! -f "$LD_PRELOAD" ]; then
          echo "Error: TCMalloc support was requested, but the library doesn't exist: $LD_PRELOAD"
          exit 1
        fi
      fi
      # Set extensions to load
      EXT="extensions=["
      EXT="$EXT ext/compressors/snappy/libwiredtiger_snappy.so,"
      EXT="$EXT ext/collators/reverse/libwiredtiger_reverse_collator.so,"
      EXT="$EXT ext/encryptors/rotn/libwiredtiger_rotn.so,"
      EXT="$EXT ext/page_log/palite/libwiredtiger_palite.so,"
      EXT="$EXT ]"
      export EXT
      Dump Environment
       eval ${which_declare} ) | /usr/bin/which --tty-only --read-alias --read-functions --show-tilde --show-dot "$@"
      BASH_FUNC_which%%=() {  ( alias;
      CI=true
      EVR_AGENT_PID=3481
      EVR_TASK_ID=wiredtiger_disagg_amazon2023_disagg_stress_format_stress_test_disagg_multi_delete_enabled_validation_2_bdaa0078f5bab40634732d372f3e78b3e25d9f8d_26_06_19_05_39_09
      EXT=extensions=[ ext/compressors/snappy/libwiredtiger_snappy.so, ext/collators/reverse/libwiredtiger_reverse_collator.so, ext/encryptors/rotn/libwiredtiger_rotn.so, ext/page_log/palite/libwiredtiger_palite.so, ]
      GOCACHE=/data/mci/e9aa61c7d0ce6c4cc43845911e9888d7/wiredtiger/cmake_build/test/format/.gocache
      GOTRACEBACK=none
      HISTCONTROL=ignoredups
      HISTSIZE=1000
      HOME=/home/ec2-user
      HOSTNAME=ip-10-128-81-210.ec2.internal
      INVOCATION_ID=de6e0d903ebf4035ac6cafec9a90b855
      JASPER_ID=a6935df6-1714-4313-b884-e9448c293037
      JASPER_MANAGER=8e56a6bf-58fa-4b0d-822a-1456bc6cb3b3
      JOURNAL_STREAM=8:27032
      LANG=C.UTF-8
      LC_ALL=C
      LD_LIBRARY_PATH=/data/mci/e9aa61c7d0ce6c4cc43845911e9888d7/wiredtiger/cmake_build
      LD_PRELOAD=/data/mci/e9aa61c7d0ce6c4cc43845911e9888d7/wiredtiger/TCMALLOC_LIB/libtcmalloc.so
      LESSOPEN=||/usr/bin/lesspipe.sh %s
      LOGNAME=ec2-user
      MAIL=/var/spool/mail/ec2-user
      PATH=/opt/mongodbtoolchain/v5/bin:/usr/sbin:/usr/sbin:/usr/sbin:/home/ec2-user/.local/bin:/home/ec2-user/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/opt/node/bin:/opt/node/bin:/opt/node/bin
      PWD=/data/mci/e9aa61c7d0ce6c4cc43845911e9888d7/wiredtiger/cmake_build/test/format
      SHELL=/bin/bash
      SHLVL=1
      SYSTEMD_COLORS=false
      SYSTEMD_EXEC_PID=3385
      S_COLORS=auto
      TEMP=/data/mci/e9aa61c7d0ce6c4cc43845911e9888d7/tmp
      TMP=/data/mci/e9aa61c7d0ce6c4cc43845911e9888d7/tmp
      TMPDIR=/data/mci/e9aa61c7d0ce6c4cc43845911e9888d7/tmp
      USER=ec2-user
      WT_BUILDDIR=/data/mci/e9aa61c7d0ce6c4cc43845911e9888d7/wiredtiger/cmake_build
      WT_TOPDIR=/data/mci/e9aa61c7d0ce6c4cc43845911e9888d7/wiredtiger
      _=/usr/bin/printenv
      which_declare=declare -f
      }
      echo "Dump Environment"
      printenv | sort
      # Fail, show the configuration file.
      fail() {
        echo "======= FAILURE =========="
        [ -f RUNDIR/CONFIG ] && cat RUNDIR/CONFIG
        exit 1
      }
      for i in $(seq 5); do
        echo Iteration $i/5
        rm -rf RUNDIR
        ./t -c ../../../test/format/CONFIG.disagg disagg.multi=1 runs.predictable_replay=1 ops.verify=1 disagg.multi_validation=1 disagg.preserve=1 runs.ops=500000:2000000  || fail
      Iteration 1/5
      ===> Output will be written to RUNDIR/leader.out
           (If you want to watch live, run: tail -f RUNDIR/leader.out)
      ===> Output will be written to RUNDIR/follower/follower.out
           (If you want to watch live, run: tail -f RUNDIR/follower/follower.out)
      Iteration 2/5
      ===> Output will be written to RUNDIR/leader.out
           (If you want to watch live, run: tail -f RUNDIR/leader.out)
      ===> Output will be written to RUNDIR/follower/follower.out
           (If you want to watch live, run: tail -f RUNDIR/follower/follower.out)
      Iteration 3/5
      ===> Output will be written to RUNDIR/leader.out
           (If you want to watch live, run: tail -f RUNDIR/leader.out)
      ===> Output will be written to RUNDIR/follower/follower.out
           (If you want to watch live, run: tail -f RUNDIR/follower/follower.out)
      Iteration 4/5
      ===> Output will be written to RUNDIR/leader.out
           (If you want to watch live, run: tail -f RUNDIR/leader.out)
      ===> Output will be written to RUNDIR/follower/follower.out
           (If you want to watch live, run: tail -f RUNDIR/follower/follower.out)
        if [ false = true ]; then
          ./t -R $format_args  || fail
        fi
      done
      bash: line 67: 14622 Aborted                 (core dumped) ./t -c ../../../test/format/CONFIG.disagg disagg.multi=1 runs.predictable_replay=1 ops.verify=1 disagg.multi_validation=1 disagg.preserve=1 runs.ops=500000:2000000
      ======= FAILURE ==========
      ############################################
      #  RUN PARAMETERS: V3
      ############################################
      assert.read_timestamp=0
      background_compact=0
      background_compact.free_space_target=23
      backup=0
      backup.incremental=off
      backup.incr_granularity=13561
      backup.live_restore=1
      backup.live_restore_read_size=1024
      backup.live_restore_threads=8
      block_cache=0
      block_cache.cache_on_checkpoint=0
      block_cache.cache_on_writes=1
      block_cache.size=79
      btree.reverse=0
      cache=3072
      cache.evict_max=1
      cache.eviction_dirty_target=0
      cache.eviction_dirty_trigger=0
      cache.eviction_updates_target=0
      cache.eviction_updates_trigger=0
      cache.minimum=0
      cache.maximum=0
      checkpoint=on
      checkpoint.log_size=199
      checkpoint.wait=82
      checkpoint_threads=2
      compact.free_space_target=52
      debug.background_compact=0
      debug.checkpoint_retention=3
      debug.cursor_reposition=0
      debug.disagg_slow_truncate_follower=0
      debug.eviction=0
      debug.log_retention=7
      debug.realloc_exact=0
      debug.realloc_malloc=0
      debug.slow_checkpoint=0
      debug.slow_truncate=0
      debug.table_logging=1
      debug.update_restore_evict=0
      disagg.internal_page_delta=1
      disagg.leaf_page_delta=1
      disagg.multi=1
      disagg.multi_validation=1
      disagg.enabled=1
      disagg.layered=1
      disagg.mode=leader
      disagg.page_log=palite
      disagg.key_provider=0
      disagg.page_log.verbose=0
      disagg.drain_threads=14
      disagg.preserve=1
      disk.data_extend=0
      disk.encryption=none
      disk.mmap=1
      disk.mmap_all=0
      ev
      

      logs

      format-stress-test-disagg-multi-delete-enabled-validation-2 task_log

      Logs:

      #0  0x0000ffff7dec4454 in __pthread_kill_implementation () from /lib64/libc.so.6
      #0  0x0000ffff7dec4454 in __pthread_kill_implementation () from /lib64/libc.so.6
      #1  0x0000ffff7de7b320 [PAC] in raise () from /lib64/libc.so.6
      #2  0x0000ffff7de62224 [PAC] in abort () from /lib64/libc.so.6
      #3  0x0000ffff7e255524 [PAC] in __wt_abort (session=session@entry=0x0) at /data/mci/db64a038e49c78c3cdc78c6482e337f8/wiredtiger/src/os_common/os_abort.c:32
      #4  0x0000000000425f1c in testutil_die (e=e@entry=0, fmt=fmt@entry=0x427d98 "%s/%d: %s") at /data/mci/db64a038e49c78c3cdc78c6482e337f8/wiredtiger/test/utility/misc.c:75
      #5  0x000000000040d044 in disagg_sync_multi_node (session=0x13753fc90800) at /data/mci/db64a038e49c78c3cdc78c6482e337f8/wiredtiger/test/format/format_disagg.c:196
      #6  0x0000000000417f94 in operations (ops_seconds=<optimized out>, ops_seconds@entry=7195, run_current=run_current@entry=3, run_total=run_total@entry=3) at /data/mci/db64a038e49c78c3cdc78c6482e337f8/wiredtiger/test/format/ops.c:505
      #7  0x000000000041bc84 in main (argc=<optimized out>, argv=<optimized out>) at /data/mci/db64a038e49c78c3cdc78c6482e337f8/wiredtiger/test/format/t.c:396
      #0  0x0000ffff7dec4454 in __pthread_kill_implementation () from /lib64/libc.so.6
      #0  0x0000ffff7dec4454 in __pthread_kill_implementation () from /lib64/libc.so.6
      #1  0x0000ffff7de7b320 [PAC] in raise () from /lib64/libc.so.6
      #2  0x0000ffff7de62224 [PAC] in abort () from /lib64/libc.so.6
      #3  0x0000ffff7e255524 [PAC] in __wt_abort (session=session@entry=0x0) at /data/mci/db64a038e49c78c3cdc78c6482e337f8/wiredtiger/src/os_common/os_abort.c:32
      #4  0x0000000000425f1c in testutil_die (e=e@entry=0, fmt=fmt@entry=0x427d98 "%s/%d: %s") at /data/mci/db64a038e49c78c3cdc78c6482e337f8/wiredtiger/test/utility/misc.c:75
      #5  0x000000000040d044 in disagg_sync_multi_node (session=0x13753fc90800) at /data/mci/db64a038e49c78c3cdc78c6482e337f8/wiredtiger/test/format/format_disagg.c:196
      #6  0x0000000000417f94 in operations (ops_seconds=<optimized out>, ops_seconds@entry=7195, run_current=run_current@entry=3, run_total=run_total@entry=3) at /data/mci/db64a038e49c78c3cdc78c6482e337f8/wiredtiger/test/format/ops.c:505
      #7  0x000000000041bc84 in main (argc=<optimized out>, argv=<optimized out>) at /data/mci/db64a038e49c78c3cdc78c6482e337f8/wiredtiger/test/format/t.c:396
      

      logs

      format-stress-test-disagg-multi-delete-enabled-validation-2 task_log

      Logs:

      Finished command 'shell.exec' in function 'dump stacktraces' (step 1 of 9) in block 'post' in 3.685467248s.
      Running command 's3.put' in function 'upload stacktraces' (step 2 of 9) in block 'post'.
      Putting files matching filter '[wiredtiger/cmake_build/*stacktrace.txt]' into path 'wiredtiger/amazon2023-disagg-stress/bdaa0078f5bab40634732d372f3e78b3e25d9f8d/artifacts/format-stress-test-disagg-multi-delete-enabled-validation-2_wiredtiger_disagg_amazon2023_disagg_stress_bdaa0078f5bab40634732d372f3e78b3e25d9f8d_26_06_19_05_39_09/' in S3 bucket 'build_external'.
      Performing S3 put to file 'wiredtiger/amazon2023-disagg-stress/bdaa0078f5bab40634732d372f3e78b3e25d9f8d/artifacts/format-stress-test-disagg-multi-delete-enabled-validation-2_wiredtiger_disagg_amazon2023_disagg_stress_bdaa0078f5bab40634732d372f3e78b3e25d9f8d_26_06_19_05_39_09/' in bucket 'build_external' (attempt 1 of 5).
      Finished command 's3.put' in function 'upload stacktraces' (step 2 of 9) in block 'post' in 238.878045ms.
      Running command 's3.put' in function 'upload test/format config' (step 3 of 9) in block 'post'.
      Putting files matching filter '[wiredtiger/cmake_build/test/format/RUNDIR*/CONFIG]' into path 'wiredtiger/amazon2023-disagg-stress/bdaa0078f5bab40634732d372f3e78b3e25d9f8d/artifacts/format-stress-test-disagg-multi-delete-enabled-validation-2_wiredtiger_disagg_amazon2023_disagg_stress_bdaa0078f5bab40634732d372f3e78b3e25d9f8d_26_06_19_05_39_09/' in S3 bucket 'build_external'.
      Performing S3 put to file 'wiredtiger/amazon2023-disagg-stress/bdaa0078f5bab40634732d372f3e78b3e25d9f8d/artifacts/format-stress-test-disagg-multi-delete-enabled-validation-2_wiredtiger_disagg_amazon2023_disagg_stress_bdaa0078f5bab40634732d372f3e78b3e25d9f8d_26_06_19_05_39_09/' in bucket 'build_external' (attempt 1 of 5).
      Finished command 's3.put' in function 'upload test/format config' (step 3 of 9) in block 'post' in 159.778665ms.
      Running command 's3.put' in function 'upload test/model workloads' (step 4 of 9) in block 'post'.
      Putting files matching filter '[wiredtiger/cmake_build/test/model/tools/WT_TEST*/*.workload]' into path 'wiredtiger/amazon2023-disagg-stress/bdaa0078f5bab40634732d372f3e78b3e25d9f8d/artifacts/format-stress-test-disagg-multi-delete-enabled-validation-2_wiredtiger_disagg_amazon2023_disagg_stress_bdaa0078f5bab40634732d372f3e78b3e25d9f8d_26_06_19_05_39_09/' in S3 bucket 'build_external'.
      Performing S3 put to file 'wiredtiger/amazon2023-disagg-stress/bdaa0078f5bab40634732d372f3e78b3e25d9f8d/artifacts/format-stress-test-disagg-multi-delete-enabled-validation-2_wiredtiger_disagg_amazon2023_disagg_stress_bdaa0078f5bab40634732d372f3e78b3e25d9f8d_26_06_19_05_39_09/' in bucket 'build_external' (attempt 1 of 5).
      File filter 'wiredtiger/cmake_build/test/model/tools/WT_TEST*/*.workload' matched no files.
      Finished command 's3.put' in function 'upload test/model workloads' (step 4 of 9) in block 'post' in 48.613688ms.
      Running command 'shell.exec' in function 'dump stderr/stdout' (step 5 of 9) in block 'post'.
      if [ -d "WT_TEST" ]; then
        # Dump stderr/stdout contents generated by the C libraries onto console for Python tests
        find "WT_TEST" -name "std*.txt" ! -empty -exec bash -c "echo 'Contents from {}:'; cat '{}'" \;
      fi
      Finished command 'shell.exec' in function 'dump stderr/stdout' (step 5 of 9) in block 'post' in 1.353846ms.
      Running command 'shell.exec' in function 'upload stat files' (step 6.1 of 9) in block 'post'.
      mkdir stat_files
      python3 ../test/evergreen/collect_stat_files.py -d stat_files
      Finished command 'shell.exec' in function 'upload stat files' (step 6.1 of 9) in block 'post' in 35.835185ms.
      Running command 'archive.targz_pack' in function 'upload stat files' (step 6.2 of 9) in block 'post'.
      Beginning to build archive.
      [message='successfully created archive' num_files='4' target='/data/mci/e9aa61c7d0ce6c4cc43845911e9888d7/wiredtiger/cmake_build/stat_files.tar.gz']
      Finished command 'archive.targz_pack' in function 'upload stat files' (step 6.2 of 9) in block 'post' in 10.847242ms.
      Running command 's3.put' in function 'upload stat files' (step 6.3 of 9) in block 'post'.
      Putting local file 'wiredtiger/cmake_build/stat_files.tar.gz' into path 'build_external/wiredtiger/amazon2023-disagg-stress/bdaa0078f5bab40634732d372f3e78b3e25d9f8d/artifacts/format-stress-test-disagg-multi-delete-enabled-validation-2_wiredtiger_disagg_amazon2023_disagg_stress_bdaa0078f5bab40634732d372f3e78b3e25d9f8d_26_06_19_05_39_09/stat_files.tar.gz' (https://build_external.s3.amazonaws.com/wiredtiger/amazon2023-disagg-stress/bdaa0078f5bab40634732d372f3e78b3e25d9f8d/artifacts/format-stress-test-disagg-multi-delete-enabled-validation-2_wiredtiger_disagg_amazon2023_disagg_stress_bdaa0078f5bab40634732d372f3e78b3e25d9f8d_26_06_19_05_39_09/stat_files.tar.gz).
      Performing S3 put to file 'wiredtiger/amazon2023-disagg-stress/bdaa0078f5bab40634732d372f3e78b3e25d9f8d/artifacts/format-stress-test-disagg-multi-delete-enabled-validation-2_wiredtiger_disagg_amazon2023_disagg_stress_bdaa0078f5bab40634732d372f3e78b3e25d9f8d_26_06_19_05_39_09/stat_files.tar.gz' in bucket 'build_external' (attempt 1 of 5).
      Finished command 's3.put' in function 'upload stat files' (step 6.3 of 9) in block 'post' in 182.344781ms.
      Running command 'archive.targz_pack' in function 'upload artifact' (step 7.1 of 9) in block 'post'.
      Beginning to build archive.
      [message='successfully created archive' num_files='7042' target='/data/mci/e9aa61c7d0ce6c4cc43845911e9888d7/wiredtiger.tgz']
      Finished command 'archive.targz_pack' in function 'upload artifact' (step 7.1 of 9) in block 'post' in 2.222657601s.
      Running command 's3.put' in function 'upload artifact' (step 7.2 of 9) in block 'post'.
      Putting local file 'wiredtiger.tgz' into path 'build_external/wiredtiger/amazon2023-disagg-stress/bdaa0078f5bab40634732d372f3e78b3e25d9f8d/artifacts/format-stress-test-disagg-multi-delete-enabled-validation-2_wiredtiger_disagg_amazon2023_disagg_stress_bdaa0078f5bab40634732d372f3e78b3e25d9f8d_26_06_19_05_39_09-0.tgz' (https://build_external.s3.amazonaws.com/wiredtiger/amazon2023-disagg-stress/bdaa0078f5bab40634732d372f3e78b3e25d9f8d/artifacts/format-stress-test-disagg-multi-delete-enabled-validation-2_wiredtiger_disagg_amazon2023_disagg_stress_bdaa0078f5bab40634732d372f3e78b3e25d9f8d_26_06_19_05_39_09-0.tgz).
      Performing S3 put to file 'wiredtiger/amazon2023-disagg-stress/bdaa0078f5bab40634732d372f3e78b3e25d9f8d/artifacts/format-stress-test-disagg-multi-delete-enabled-validation-2_wiredtiger_disagg_amazon2023_disagg_stress_bdaa0078f5bab40634732d372f3e78b3e25d9f8d_26_06_19_05_39_09-0.tgz' in bucket 'build_external' (attempt 1 of 5).
      Finished command 's3.put' in function 'upload artifact' (step 7.2 of 9) in block 'post' in 2.345338576s.
      Running command 'archive.targz_pack' in function 'save wt hang analyzer core/debugger files' (step 8.1 of 9) in block 'post'.
      Beginning to build archive.
      No files were archived.
      Finished command 'archive.targz_pack' in function 'save wt hang analyzer core/debugger files' (step 8.1 of 9) in block 'post' in 344.322µs.
      Running command 's3.put' in function 'save wt hang analyzer core/debugger files' (step 8.2 of 9) in block 'post'.
      Putting local file 'wt-hang-analyzer.tgz' into path 'build_external/wiredtiger/amazon2023-disagg-stress/bdaa0078f5bab40634732d372f3e78b3e25d9f8d/wt_hang_analyzer/wt-hang-analyzer_format-stress-test-disagg-multi-delete-enabled-validation-2_wiredtiger_disagg_amazon2023_disagg_stress_bdaa0078f5bab40634732d372f3e78b3e25d9f8d_26_06_19_05_39_09.tgz' (https://build_external.s3.amazonaws.com/wiredtiger/amazon2023-disagg-stress/bdaa0078f5bab40634732d372f3e78b3e25d9f8d/wt_hang_analyzer/wt-hang-analyzer_format-stress-test-disagg-multi-delete-enabled-validation-2_wiredtiger_disagg_amazon2023_disagg_stress_bdaa0078f5bab40634732d372f3e78b3e25d9f8d_26_06_19_05_39_09.tgz).
      Performing S3 put to file 'wiredtiger/amazon2023-disagg-stress/bdaa0078f5bab40634732d372f3e78b3e25d9f8d/wt_hang_analyzer/wt-hang-analyzer_format-stress-test-disagg-multi-delete-enabled-validation-2_wiredtiger_disagg_amazon2023_disagg_stress_bdaa0078f5bab40634732d372f3e78b3e25d9f8d_26_06_19_05_39_09.tgz' in bucket 'build_external' (attempt 1 of 5).
      File '/data/mci/e9aa61c7d0ce6c4cc43845911e9888d7/wt-hang-analyzer.tgz' not found and skip missing is true, exiting without error.
      Finished command 's3.put' in function 'save wt hang analyzer core/debugger files' (step 8.2 of 9) in block 'post' in 9.471613ms.
      Running command 'shell.exec' in function 'cleanup' (step 9 of 9) in block 'post'.
      Finished command 'shell.exec' in function 'cleanup' (step 9 of 9) in block 'post' in 690.209806ms.
      Finished running post-task commands in 9.632571314s.
      reading test log spec; falling back to default spec: open /data/mci/e9aa61c7d0ce6c4cc43845911e9888d7/build/TestLogs/log_spec.yaml: no such file or directory
      

      logs

            Assignee:
            [DO NOT USE] Backlog - Storage Engines Team
            Reporter:
            xgen-buildbaron-user
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated: