-
Type:
Build Failure
-
Resolution: Gone away
-
Priority:
Major - P3
-
None
-
Affects Version/s: None
-
Component/s: Schema Management
-
Storage Engines, Storage Engines - Foundations
-
407.535
-
None
-
None
-
- schema-disagg-abort-crash-test-disagg-1
- schema-disagg-abort-follower-stepup-test-disagg-1
- schema-disagg-abort-multi-crash-test-disagg-1
- schema-disagg-abort-multi-switch-crash-test-disagg-1
- schema-disagg-abort-multi-switch-test-disagg-1
- schema-disagg-abort-multi-test-disagg-1
- schema-disagg-abort-smoke-test-disagg-1
- schema-disagg-abort-switch-test-disagg-1
- schema-disagg-abort-test-disagg-1
-
269
schema-disagg-abort-switch-test-disagg-1 on amazon2023-disagg-stress
Host: i-0a712ab651778c74f
Project: wiredtiger-disagg
Commit: 61adc5c8
Please refer to BF(G) Playbook for instructions on handling BF and BFG tickets as well as Auto-Resolution Rules
Task Logs:
schema-disagg-abort-switch-test-disagg-1 task_log
Logs:
Task logger initialized (agent version '2026-08-12' from Evergreen build revision '1317dd6421f52d779d82159c7938f3d6cff0f3c5').
Starting task 'wiredtiger_disagg_amazon2023_disagg_stress_schema_disagg_abort_switch_test_disagg_1_61adc5c84c42f154c68f0d91297d645ca9a2bda1_26_08_14_10_40_33', 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.536666ms.
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 39.527µ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/6b20902be989a43f5b2d21f4b4489294/tmp/tmp.34GjSKuvVm/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...
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 3m9.814981133s.
Finished running pre-task commands in 3m9.817875958s.
Running task commands.
Running command 's3.get' in function 'fetch artifacts' (step 1 of 2).
Fetching remote file 'wiredtiger/amazon2023-disagg-stress/61adc5c84c42f154c68f0d91297d645ca9a2bda1/artifacts/compile_wiredtiger_disagg_amazon2023_disagg_stress_61adc5c84c42f154c68f0d91297d645ca9a2bda1_26_08_14_10_40_33.tgz' from S3 bucket 'build_external' (attempt 1 of 5).
Finished command 's3.get' in function 'fetch artifacts' (step 1 of 2) in 5.425764693s.
Running command 'shell.exec' (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:history_size=7:print_suppressions=0:suppressions=$WT_TOPDIR/test/evergreen/tsan_warnings.supp"
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=3480
EVR_TASK_ID=wiredtiger_disagg_amazon2023_disagg_stress_schema_disagg_abort_switch_test_disagg_1_61adc5c84c42f154c68f0d91297d645ca9a2bda1_26_08_14_10_40_33
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/6b20902be989a43f5b2d21f4b4489294/wiredtiger/cmake_build/test/csuite/schema_disagg_abort/.gocache
GOTRACEBACK=none
HISTCONTROL=ignoredups
HISTSIZE=1000
HOME=/home/ec2-user
HOSTNAME=ip-10-128-163-1.ec2.internal
INVOCATION_ID=09d7e110810f47ac95770c10c7b88f49
JASPER_ID=c9b1c1ad-0f0f-419e-aea4-a7a775d158b6
JASPER_MANAGER=7581e159-c2af-42ad-91b7-3ce0165ec589
JOURNAL_STREAM=8:19802
LANG=C.UTF-8
LC_ALL=C
LD_LIBRARY_PATH=/data/mci/6b20902be989a43f5b2d21f4b4489294/wiredtiger/cmake_build
LD_PRELOAD=/data/mci/6b20902be989a43f5b2d21f4b4489294/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/6b20902be989a43f5b2d21f4b4489294/wiredtiger/cmake_build/test/csuite/schema_disagg_abort
SHELL=/bin/bash
SHLVL=1
SYSTEMD_COLORS=false
SYSTEMD_EXEC_PID=3389
S_COLORS=auto
TEMP=/data/mci/6b20902be989a43f5b2d21f4b4489294/tmp
TMP=/data/mci/6b20902be989a43f5b2d21f4b4489294/tmp
TMPDIR=/data/mci/6b20902be989a43f5b2d21f4b4489294/tmp
USER=ec2-user
WT_BUILDDIR=/data/mci/6b20902be989a43f5b2d21f4b4489294/wiredtiger/cmake_build
WT_TOPDIR=/data/mci/6b20902be989a43f5b2d21f4b4489294/wiredtiger
_=/usr/bin/printenv
which_declare=declare -f
}
echo "Dump Environment"
printenv | sort
build_dir=$(cd ../../../ && pwd)
for i in $(seq 10); do
echo "Iteration $i/10"
# One node stepping down and back up every 30 seconds (-s).
Iteration 1/10
Running test command: ./test_schema_disagg_abort -b /data/mci/6b20902be989a43f5b2d21f4b4489294/wiredtiger/cmake_build -r l -s 30 -T 12 -u 64 -t 300
Parent: roles l; 12 schema threads; pool 64 slots; switch every 30s; kill leader@0 follower@0 lone@0; stop at 300s
CONFIG: test_schema_disagg_abort -r l -s 30 -u 64 -T 12 -t 300 -PSD13763563,E11100398
Running test command: /data/mci/6b20902be989a43f5b2d21f4b4489294/wiredtiger/cmake_build/test/csuite/schema_disagg_abort/test_schema_disagg_abort -r node -i 0 -A l -h WT_TEST.test_schema_disagg_abort -b /data/mci/6b20902be989a43f5b2d21f4b4489294/wiredtiger/cmake_build -T 12 -u 64 -s 30 -PSD13763563,E11100398
Node 0: starting as leader
Node 0: checkpoint 1 complete
Node 0: checkpoint 2 complete
Node 0: checkpoint 3 complete
Node 0: checkpoint 4 complete
Node 0: checkpoint 5 complete
Node 0: checkpoint 6 complete
Node 0: checkpoint 7 complete
Node 0: checkpoint 8 complete
Node 0: checkpoint 9 complete
Node 0: checkpoint 10 complete
Node 0: checkpoint 11 complete
Node 0: checkpoint 12 complete
Node 0: checkpoint 13 complete
Node 0: checkpoint 14 complete
Node 0: checkpoint 15 complete
Node 0: checkpoint 16 complete
Node 0: checkpoint 17 complete
Node 0: checkpoint 18 complete
Node 0: checkpoint 19 complete
Parent: directing switch 1
Node 0: checkpoint 20 complete
Node 0: checkpoint 21 complete
Node 0: checkpoint 22 complete
Node 0: checkpoint 23 complete
Node 0: checkpoint 24 complete
Node 0: checkpoint 25 complete
Node 0: checkpoint 26 complete
Node 0: checkpoint 27 complete
Node 0: checkpoint 28 complete
Node 0: checkpoint 29 complete
Node 0: checkpoint 30 complete
Node 0: checkpoint 31 complete
Node 0: step-down checkpoint at 1947 (lsn 15499)
Node 0: no peer to hand over to; continuing alone
Node 0: now follower
Node 0: switch 1 complete
[1786709691:618278][13553:0xffffa53edbc0], checkpoint-pick-up: [WT_VERB_LAYERED][WARNING]: Picking up the same checkpoint again: metadata LSN = 15497
Parent: directing switch 2
Node 0: adopted the latest checkpoint before step-up
Node 0: now leader
Node 0: switch 2 complete
Node 0: checkpoint 1 complete
Node 0: checkpoint 2 complete
Node 0: checkpoint 3 complete
Node 0: checkpoint 4 complete
Node 0: checkpoint 5 complete
Node 0: checkpoint 6 complete
Node 0: checkpoint 7 complete
Node 0: checkpoint 8 complete
Node 0: checkpoint 9 complete
Node 0: checkpoint 10 complete
Node 0: checkpoint 11 complete
Node 0: checkpoint 12 complete
Node 0: checkpoint 13 complete
Node 0: checkpoint 14 complete
Node 0: checkpoint 15 complete
Node 0: checkpoint 16 complete
Node 0: checkpoint 17 complete
Node 0: checkpoint 18 complete
Node 0: checkpoint 19 complete
Node 0: checkpoint 20 complete
Node 0: checkpoint 21 complete
Node 0: checkpoint 22 complete
Node 0: checkpoint 23 complete
Node 0: checkpoint 24 complete
Parent: directing switch 3
Node 0: checkpoint 25 complete
Node 0: checkpoint 26 complete
Node 0: checkpoint 27 complete
Node 0: checkpoint 28 complete
Node 0: checkpoint 29 complete
Node 0: checkpoint 30 complete
Node 0: checkpoint 31 complete
Node 0: checkpoint 32 complete
Node 0: step-down checkpoint at 7554 (lsn 43249)
Node 0: no peer to hand over to; continuing alone
Node 0: now follower
Nod
schema-disagg-abort-switch-test-disagg-1 task_log
Logs:
test_schema_disagg_abort: FAILED: check_data_rows/187: ret == 0: table:schema_0_0_15 key 0: missing (epoch 23857)
schema-disagg-abort-switch-test-disagg-1 task_log
Logs:
Running task commands failed: running command: command failed: shell script encountered problem: exit code 134 Finished running task commands in 7m12.242993575s. Task completed - FAILURE. Running post-task commands.
schema-disagg-abort-switch-test-disagg-1 task_log
Logs:
#0 0x0000ffffa84c4454 in ?? () #0 0x0000ffffa84c4454 in __pthread_kill_implementation () from /lib64/libc.so.6 #1 0x0000ffffa847b320 [PAC] in raise () from /lib64/libc.so.6 #2 0x0000ffffa8462224 [PAC] in abort () from /lib64/libc.so.6 #3 0x0000ffffa8865f40 [PAC] in __wt_abort (session=0x0) at /data/mci/22eb6d09074952ee09cbfb7ca2fa6876/wiredtiger/src/os_common/os_abort.c:32 #4 0x000000000040a644 in ?? () #5 0x0000fffff650e988 in ?? ()
schema-disagg-abort-switch-test-disagg-1 task_log
Logs:
Finished command 'shell.exec' in function 'dump stacktraces' (step 1 of 9) in block 'post' in 2.320470632s.
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/61adc5c84c42f154c68f0d91297d645ca9a2bda1/artifacts/schema-disagg-abort-switch-test-disagg-1_wiredtiger_disagg_amazon2023_disagg_stress_61adc5c84c42f154c68f0d91297d645ca9a2bda1_26_08_14_10_40_33/' in S3 bucket 'build_external'.
Performing S3 put to file 'wiredtiger/amazon2023-disagg-stress/61adc5c84c42f154c68f0d91297d645ca9a2bda1/artifacts/schema-disagg-abort-switch-test-disagg-1_wiredtiger_disagg_amazon2023_disagg_stress_61adc5c84c42f154c68f0d91297d645ca9a2bda1_26_08_14_10_40_33/' in bucket 'build_external' (attempt 1 of 5).
Finished command 's3.put' in function 'upload stacktraces' (step 2 of 9) in block 'post' in 200.535794ms.
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/61adc5c84c42f154c68f0d91297d645ca9a2bda1/artifacts/schema-disagg-abort-switch-test-disagg-1_wiredtiger_disagg_amazon2023_disagg_stress_61adc5c84c42f154c68f0d91297d645ca9a2bda1_26_08_14_10_40_33/' in S3 bucket 'build_external'.
Performing S3 put to file 'wiredtiger/amazon2023-disagg-stress/61adc5c84c42f154c68f0d91297d645ca9a2bda1/artifacts/schema-disagg-abort-switch-test-disagg-1_wiredtiger_disagg_amazon2023_disagg_stress_61adc5c84c42f154c68f0d91297d645ca9a2bda1_26_08_14_10_40_33/' in bucket 'build_external' (attempt 1 of 5).
File filter 'wiredtiger/cmake_build/test/format/RUNDIR*/CONFIG' matched no files.
Finished command 's3.put' in function 'upload test/format config' (step 3 of 9) in block 'post' in 57.168914ms.
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/61adc5c84c42f154c68f0d91297d645ca9a2bda1/artifacts/schema-disagg-abort-switch-test-disagg-1_wiredtiger_disagg_amazon2023_disagg_stress_61adc5c84c42f154c68f0d91297d645ca9a2bda1_26_08_14_10_40_33/' in S3 bucket 'build_external'.
Performing S3 put to file 'wiredtiger/amazon2023-disagg-stress/61adc5c84c42f154c68f0d91297d645ca9a2bda1/artifacts/schema-disagg-abort-switch-test-disagg-1_wiredtiger_disagg_amazon2023_disagg_stress_61adc5c84c42f154c68f0d91297d645ca9a2bda1_26_08_14_10_40_33/' 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 47.261835ms.
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.35165ms.
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 55.674531ms.
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/6b20902be989a43f5b2d21f4b4489294/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 31.17742ms.
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/61adc5c84c42f154c68f0d91297d645ca9a2bda1/artifacts/schema-disagg-abort-switch-test-disagg-1_wiredtiger_disagg_amazon2023_disagg_stress_61adc5c84c42f154c68f0d91297d645ca9a2bda1_26_08_14_10_40_33/stat_files.tar.gz' (https://build_external.s3.amazonaws.com/wiredtiger/amazon2023-disagg-stress/61adc5c84c42f154c68f0d91297d645ca9a2bda1/artifacts/schema-disagg-abort-switch-test-disagg-1_wiredtiger_disagg_amazon2023_disagg_stress_61adc5c84c42f154c68f0d91297d645ca9a2bda1_26_08_14_10_40_33/stat_files.tar.gz).
Performing S3 put to file 'wiredtiger/amazon2023-disagg-stress/61adc5c84c42f154c68f0d91297d645ca9a2bda1/artifacts/schema-disagg-abort-switch-test-disagg-1_wiredtiger_disagg_amazon2023_disagg_stress_61adc5c84c42f154c68f0d91297d645ca9a2bda1_26_08_14_10_40_33/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 350.230716ms.
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='8690' target='/data/mci/6b20902be989a43f5b2d21f4b4489294/wiredtiger.tgz']
Finished command 'archive.targz_pack' in function 'upload artifact' (step 7.1 of 9) in block 'post' in 1.098226436s.
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/61adc5c84c42f154c68f0d91297d645ca9a2bda1/artifacts/schema-disagg-abort-switch-test-disagg-1_wiredtiger_disagg_amazon2023_disagg_stress_61adc5c84c42f154c68f0d91297d645ca9a2bda1_26_08_14_10_40_33-0.tgz' (https://build_external.s3.amazonaws.com/wiredtiger/amazon2023-disagg-stress/61adc5c84c42f154c68f0d91297d645ca9a2bda1/artifacts/schema-disagg-abort-switch-test-disagg-1_wiredtiger_disagg_amazon2023_disagg_stress_61adc5c84c42f154c68f0d91297d645ca9a2bda1_26_08_14_10_40_33-0.tgz).
Performing S3 put to file 'wiredtiger/amazon2023-disagg-stress/61adc5c84c42f154c68f0d91297d645ca9a2bda1/artifacts/schema-disagg-abort-switch-test-disagg-1_wiredtiger_disagg_amazon2023_disagg_stress_61adc5c84c42f154c68f0d91297d645ca9a2bda1_26_08_14_10_40_33-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.246085501s.
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 363.366µ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/61adc5c84c42f154c68f0d91297d645ca9a2bda1/wt_hang_analyzer/wt-hang-analyzer_schema-disagg-abort-switch-test-disagg-1_wiredtiger_disagg_amazon2023_disagg_stress_61adc5c84c42f154c68f0d91297d645ca9a2bda1_26_08_14_10_40_33.tgz' (https://build_external.s3.amazonaws.com/wiredtiger/amazon2023-disagg-stress/61adc5c84c42f154c68f0d91297d645ca9a2bda1/wt_hang_analyzer/wt-hang-analyzer_schema-disagg-abort-switch-test-disagg-1_wiredtiger_disagg_amazon2023_disagg_stress_61adc5c84c42f154c68f0d91297d645ca9a2bda1_26_08_14_10_40_33.tgz).
Performing S3 put to file 'wiredtiger/amazon2023-disagg-stress/61adc5c84c42f154c68f0d91297d645ca9a2bda1/wt_hang_analyzer/wt-hang-analyzer_schema-disagg-abort-switch-test-disagg-1_wiredtiger_disagg_amazon2023_disagg_stress_61adc5c84c42f154c68f0d91297d645ca9a2bda1_26_08_14_10_40_33.tgz' in bucket 'build_external' (attempt 1 of 5).
File '/data/mci/6b20902be989a43f5b2d21f4b4489294/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.458845ms.
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 307.855909ms.
Finished running post-task commands in 6.727328716s.
reading test log spec; falling back to default spec: open /data/mci/6b20902be989a43f5b2d21f4b4489294/build/TestLogs/log_spec.yaml: no such file or directory