-
Type:
Build Failure
-
Resolution: Fixed
-
Priority:
Major - P3
-
Affects Version/s: None
-
Component/s: Test Csuite
-
Storage Engines - Foundations
-
236.744
-
None
-
None
-
15
schema-disagg-abort-smoke-test-disagg-1 on amazon2023-disagg-stress
Host: i-00b666067c012440c
Project: wiredtiger-disagg
Commit: e32567b2
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-smoke-test-disagg-1 task_log
Logs:
Task logger initialized (agent version '2026-08-28' from Evergreen build revision '6f6d33950a789b6ea8872e276f869e979098590a').
Starting task 'wiredtiger_disagg_amazon2023_disagg_stress_schema_disagg_abort_smoke_test_disagg_1_e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b_26_08_28_22_37_40', 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.483305ms.
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.395µ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/5cd8414c47160596ac92db455b333f09/tmp/tmp.auIFV5LQfK/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 3m5.468546358s.
Finished running pre-task commands in 3m5.471369129s.
Running task commands.
Running command 's3.get' in function 'fetch artifacts' (step 1 of 2).
Fetching remote file 'wiredtiger/amazon2023-disagg-stress/e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b/artifacts/compile_wiredtiger_disagg_amazon2023_disagg_stress_e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b_26_08_28_22_37_40.tgz' from S3 bucket 'build_external' (attempt 1 of 5).
Finished command 's3.get' in function 'fetch artifacts' (step 1 of 2) in 5.473308201s.
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=3645
EVR_TASK_ID=wiredtiger_disagg_amazon2023_disagg_stress_schema_disagg_abort_smoke_test_disagg_1_e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b_26_08_28_22_37_40
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/5cd8414c47160596ac92db455b333f09/wiredtiger/cmake_build/test/csuite/schema_disagg_abort/.gocache
GOTRACEBACK=none
HISTCONTROL=ignoredups
HISTSIZE=1000
HOME=/home/ec2-user
HOSTNAME=ip-10-128-115-230.ec2.internal
INVOCATION_ID=73419c02ec9f4c6395a76829e26fc0f2
JASPER_ID=7c467dc2-4c37-4e26-8849-8d52f873cfda
JASPER_MANAGER=3fec9961-2d56-4f21-a59f-acc6ab77073c
JOURNAL_STREAM=8:17733
LANG=C.UTF-8
LC_ALL=C
LD_LIBRARY_PATH=/data/mci/5cd8414c47160596ac92db455b333f09/wiredtiger/cmake_build
LD_PRELOAD=/data/mci/5cd8414c47160596ac92db455b333f09/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/5cd8414c47160596ac92db455b333f09/wiredtiger/cmake_build/test/csuite/schema_disagg_abort
SHELL=/bin/bash
SHLVL=1
SYSTEMD_COLORS=false
SYSTEMD_EXEC_PID=3546
S_COLORS=auto
TEMP=/data/mci/5cd8414c47160596ac92db455b333f09/tmp
TMP=/data/mci/5cd8414c47160596ac92db455b333f09/tmp
TMPDIR=/data/mci/5cd8414c47160596ac92db455b333f09/tmp
USER=ec2-user
WT_BUILDDIR=/data/mci/5cd8414c47160596ac92db455b333f09/wiredtiger/cmake_build
WT_TOPDIR=/data/mci/5cd8414c47160596ac92db455b333f09/wiredtiger
_=/usr/bin/printenv
which_declare=declare -f
}
echo "Dump Environment"
printenv | sort
# The full mode matrix in short runs: single node, lone follower, role switches,
# kills, and both two-node topologies. The two-node switch modes at the end are
# EXPECTED to fail until FIXME-WT-18068 and FIXME-WT-17746 land.
Running test command: ./test_schema_disagg_abort -b /data/mci/5cd8414c47160596ac92db455b333f09/wiredtiger/cmake_build -r l -t 10 -T 2 -h WT_TEST.schema_disagg_abort.l
Parent: roles l; 2 schema threads; pool 32 slots; switch every 0s; kill leader@0 follower@0 lone@0; stop at 10s
CONFIG: test_schema_disagg_abort -r l -u 32 -T 2 -t 10 -PSD4126405,E3762476
Running test command: /data/mci/5cd8414c47160596ac92db455b333f09/wiredtiger/cmake_build/test/csuite/schema_disagg_abort/test_schema_disagg_abort -r node -i 0 -A l -h WT_TEST.schema_disagg_abort.l -b /data/mci/5cd8414c47160596ac92db455b333f09/wiredtiger/cmake_build -T 2 -u 32 -PSD4126405,E3762476
Node 0: starting as leader
Node 0: checkpoint 1 complete; stable timestamp = 73
Node 0: checkpoint 2 complete; stable timestamp = 98
Node 0: checkpoint 3 complete; stable timestamp = 152
Node 0: checkpoint 4 complete; stable timestamp = 167
Node 0: checkpoint 5 complete; stable timestamp = 186
Parent: directing graceful stop
Node 0: checkpoint 6 complete; stable timestamp = 201
Node 0: stopped gracefully as leader
Parent: Open node0 database, run recovery and verify content
[1787962669:659343][13461:0xffff9ab0f040], wiredtiger_open: [WT_VERB_METADATA][WARNING]: Removing local file due to disagg mode: WiredTiger
[1787962669:659394][13461:0xffff9ab0f040], wiredtiger_open: [WT_VERB_METADATA][WARNING]: Removing local file due to disagg mode: WiredTiger.basecfg
[1787962669:659412][13461:0xffff9ab0f040], wiredtiger_open: [WT_VERB_METADATA][WARNING]: Removing local file due to disagg mode: WiredTiger.wt
[1787962669:659456][13461:0xffff9ab0f040], wiredtiger_open: [WT_VERB_METADATA][WARNING]: Removing local file due to disagg mode: schema_0_1_14_0.wt_ingest
[1787962669:659474][13461:0xffff9ab0f040], wiredtiger_open: [WT_VERB_METADATA][WARNING]: Removing local file due to disagg mode: WiredTiger.turtle
[1787962669:659483][13461:0xffff9ab0f040], wiredtiger_open: [WT_VERB_METADATA][WARNING]: Removing local file due to disagg mode: WiredTigerHS.wt
[1787962669:659492][13461:0xffff9ab0f040], wiredtiger_open: [WT_VERB_METADATA][WARNING]: Removing local file due to disagg mode: schema_0_0_12_0.wt_ingest
[1787962669:659502][13461:0xffff9ab0f040], wiredtiger_open: [WT_VERB_METADATA][WARNING]: Removing local file due to disagg mode: schema_0_1_23_0.wt_ingest
[1787962669:659511][13461:0xffff9ab0f040], wiredtiger_open: [WT_VERB_METADATA][WARNING]: Removing local file due to disagg mode: schema_0_1_12_0.wt_ingest
[1787962669:659521][13461:0xffff9ab0f040], wiredtiger_open: [WT_VERB_METADATA][WARNING]: Removing local file due to disagg mode: schema_0_0_1_0.wt_ingest
[1787962669:659530][13461:0xffff9ab0f040], wiredtiger_open: [WT_VERB_METADATA][WARNING]: Removing local file due to disagg mode: schema_0_0_9_0.wt_ingest
[1787962669:659539][13461:0xffff9ab0f040], wiredtiger_open: [WT_VERB_METADATA][WARNING]: Removing local file due to disagg mode: schema_0_1_22_0.wt_ingest
[1787962669:659547][13461:0xffff9ab0f040], wiredtiger_open: [WT_VERB_METADATA][WARNING]: Removing local file due to disagg mode: schema_0_0_0_0.wt_ingest
[1787962669:659556][13461:0xffff9ab0f040], wiredtiger_open:
schema-disagg-abort-smoke-test-disagg-1 task_log
Logs:
test_schema_disagg_abort: FAILED: Node 0: peer did not adopt the step-down checkpoint (lsn 1684) in 30 seconds: Connection timed out
schema-disagg-abort-smoke-test-disagg-1 task_log
Logs:
test_schema_disagg_abort: FAILED: node0 terminated unexpectedly: signal 6: Invalid argument
schema-disagg-abort-smoke-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 6m32.468421644s. Task completed - FAILURE. Running post-task commands.
schema-disagg-abort-smoke-test-disagg-1 task_log
Logs:
#0 0x0000ffffb4ac4454 in __pthread_kill_implementation () from /lib64/libc.so.6 #0 0x0000ffffb4ac4454 in __pthread_kill_implementation () from /lib64/libc.so.6 #1 0x0000ffffb4a7b320 [PAC] in raise () from /lib64/libc.so.6 #2 0x0000ffffb4a62224 [PAC] in abort () from /lib64/libc.so.6 #3 0x0000ffffb4e6a1e0 [PAC] in __wt_abort (session=session@entry=0x0) at /data/mci/c51193de18d323cf441af1d0d8e03442/wiredtiger/src/os_common/os_abort.c:32 #4 0x000000000040b258 in testutil_die (e=e@entry=22, fmt=fmt@entry=0x411320 "%s terminated unexpectedly: %s %d") at /data/mci/c51193de18d323cf441af1d0d8e03442/wiredtiger/test/utility/misc.c:75 #5 0x0000000000405e94 in die_on_child_status (proc=proc@entry=0x48d1c8 <children>, status=<optimized out>, code=<optimized out>) at /data/mci/c51193de18d323cf441af1d0d8e03442/wiredtiger/test/csuite/schema_disagg_abort/parent.c:140 #6 0x0000000000405f68 in child_alive (proc=proc@entry=0x48d1c8 <children>) at /data/mci/c51193de18d323cf441af1d0d8e03442/wiredtiger/test/csuite/schema_disagg_abort/parent.c:157 #7 0x0000000000405fa8 in children_poll (children=children@entry=0x48d1c8 <children>) at /data/mci/c51193de18d323cf441af1d0d8e03442/wiredtiger/test/csuite/schema_disagg_abort/parent.c:171 #8 0x0000000000406008 in wait_for_sentinel (cfg=cfg@entry=0xffffddd93840, children=children@entry=0x48d1c8 <children>, sentinel=sentinel@entry=0xffffddd91700 "switch_done.1", max_wait=max_wait@entry=240) at /data/mci/c51193de18d323cf441af1d0d8e03442/wiredtiger/test/csuite/schema_disagg_abort/parent.c:186 #9 0x00000000004067e8 in direct_switch (cfg=cfg@entry=0xffffddd93840, children=children@entry=0x48d1c8 <children>, cur_leaderp=cur_leaderp@entry=0xffffddd917dc, cur_followerp=cur_followerp@entry=0xffffddd917d8, genp=genp@entry=0xffffddd917d4) at /data/mci/c51193de18d323cf441af1d0d8e03442/wiredtiger/test/csuite/schema_disagg_abort/parent.c:245 #10 0x0000000000406c30 in run_children (cfg=cfg@entry=0xffffddd93840, self_path=self_path@entry=0xffffddd92838 "/data/mci/5cd8414c47160596ac92db455b333f09/wiredtiger/cmake_build/test/csuite/schema_disagg_abort/test_schema_disagg_abort") at /data/mci/c51193de18d323cf441af1d0d8e03442/wiredtiger/test/csuite/schema_disagg_abort/parent.c:342 #11 0x0000000000406f64 in parent_main (cfg=cfg@entry=0xffffddd93840, self_path=self_path@entry=0xffffddd92838 "/data/mci/5cd8414c47160596ac92db455b333f09/wiredtiger/cmake_build/test/csuite/schema_disagg_abort/test_schema_disagg_abort") at /data/mci/c51193de18d323cf441af1d0d8e03442/wiredtiger/test/csuite/schema_disagg_abort/parent.c:407 #12 0x0000000000405144 in main (argc=<optimized out>, argv=0xffffddd95a08) at /data/mci/c51193de18d323cf441af1d0d8e03442/wiredtiger/test/csuite/schema_disagg_abort/main.c:461 #0 0x0000ffff9cec4454 in __pthread_kill_implementation () from /lib64/libc.so.6 #0 0x0000ffff9cec4454 in __pthread_kill_implementation () from /lib64/libc.so.6 #1 0x0000ffff9ce7b320 [PAC] in raise () from /lib64/libc.so.6 #2 0x0000ffff9ce62224 [PAC] in abort () from /lib64/libc.so.6 #3 0x0000ffff9d26a1e0 [PAC] in __wt_abort (session=session@entry=0x0) at /data/mci/c51193de18d323cf441af1d0d8e03442/wiredtiger/src/os_common/os_abort.c:32 #4 0x000000000040b258 in testutil_die (e=e@entry=110, fmt=fmt@entry=0x410350 "Node %u: peer did not adopt the step-down checkpoint (lsn %lu) in %d seconds") at /data/mci/c51193de18d323cf441af1d0d8e03442/wiredtiger/test/utility/misc.c:75 #5 0x0000000000403f54 in generator_stepdown_ended (state=state@entry=0x4306a0 <state>, pacing=pacing@entry=0xffff9087d2b0) at /data/mci/c51193de18d323cf441af1d0d8e03442/wiredtiger/test/csuite/schema_disagg_abort/generator.c:265 #6 0x00000000004040a4 in thread_generator_run (arg=0x4306a0 <state>) at /data/mci/c51193de18d323cf441af1d0d8e03442/wiredtiger/test/csuite/schema_disagg_abort/generator.c:329 #7 0x0000ffff9cec2834 in start_thread () from /lib64/libc.so.6 #8 0x0000ffff9ce66e5c [PAC] in thread_start () from /lib64/libc.so.6
schema-disagg-abort-smoke-test-disagg-1 task_log
Logs:
Finished command 'shell.exec' in function 'dump stacktraces' (step 1 of 9) in block 'post' in 2.190828674s.
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/e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b/artifacts/schema-disagg-abort-smoke-test-disagg-1_wiredtiger_disagg_amazon2023_disagg_stress_e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b_26_08_28_22_37_40/' in S3 bucket 'build_external'.
Performing S3 put to file 'wiredtiger/amazon2023-disagg-stress/e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b/artifacts/schema-disagg-abort-smoke-test-disagg-1_wiredtiger_disagg_amazon2023_disagg_stress_e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b_26_08_28_22_37_40/' in bucket 'build_external' (attempt 1 of 5).
Finished command 's3.put' in function 'upload stacktraces' (step 2 of 9) in block 'post' in 268.192871ms.
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/e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b/artifacts/schema-disagg-abort-smoke-test-disagg-1_wiredtiger_disagg_amazon2023_disagg_stress_e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b_26_08_28_22_37_40/' in S3 bucket 'build_external'.
Performing S3 put to file 'wiredtiger/amazon2023-disagg-stress/e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b/artifacts/schema-disagg-abort-smoke-test-disagg-1_wiredtiger_disagg_amazon2023_disagg_stress_e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b_26_08_28_22_37_40/' 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 58.29408ms.
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/e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b/artifacts/schema-disagg-abort-smoke-test-disagg-1_wiredtiger_disagg_amazon2023_disagg_stress_e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b_26_08_28_22_37_40/' in S3 bucket 'build_external'.
Performing S3 put to file 'wiredtiger/amazon2023-disagg-stress/e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b/artifacts/schema-disagg-abort-smoke-test-disagg-1_wiredtiger_disagg_amazon2023_disagg_stress_e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b_26_08_28_22_37_40/' 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.625393ms.
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.331887ms.
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 52.410936ms.
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='42' target='/data/mci/5cd8414c47160596ac92db455b333f09/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 21.807959ms.
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/e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b/artifacts/schema-disagg-abort-smoke-test-disagg-1_wiredtiger_disagg_amazon2023_disagg_stress_e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b_26_08_28_22_37_40/stat_files.tar.gz' (https://build_external.s3.amazonaws.com/wiredtiger/amazon2023-disagg-stress/e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b/artifacts/schema-disagg-abort-smoke-test-disagg-1_wiredtiger_disagg_amazon2023_disagg_stress_e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b_26_08_28_22_37_40/stat_files.tar.gz).
Performing S3 put to file 'wiredtiger/amazon2023-disagg-stress/e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b/artifacts/schema-disagg-abort-smoke-test-disagg-1_wiredtiger_disagg_amazon2023_disagg_stress_e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b_26_08_28_22_37_40/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 167.779171ms.
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='9177' target='/data/mci/5cd8414c47160596ac92db455b333f09/wiredtiger.tgz']
Finished command 'archive.targz_pack' in function 'upload artifact' (step 7.1 of 9) in block 'post' in 952.460816ms.
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/e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b/artifacts/schema-disagg-abort-smoke-test-disagg-1_wiredtiger_disagg_amazon2023_disagg_stress_e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b_26_08_28_22_37_40-0.tgz' (https://build_external.s3.amazonaws.com/wiredtiger/amazon2023-disagg-stress/e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b/artifacts/schema-disagg-abort-smoke-test-disagg-1_wiredtiger_disagg_amazon2023_disagg_stress_e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b_26_08_28_22_37_40-0.tgz).
Performing S3 put to file 'wiredtiger/amazon2023-disagg-stress/e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b/artifacts/schema-disagg-abort-smoke-test-disagg-1_wiredtiger_disagg_amazon2023_disagg_stress_e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b_26_08_28_22_37_40-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 1.418680732s.
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 350.892µ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/e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b/wt_hang_analyzer/wt-hang-analyzer_schema-disagg-abort-smoke-test-disagg-1_wiredtiger_disagg_amazon2023_disagg_stress_e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b_26_08_28_22_37_40.tgz' (https://build_external.s3.amazonaws.com/wiredtiger/amazon2023-disagg-stress/e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b/wt_hang_analyzer/wt-hang-analyzer_schema-disagg-abort-smoke-test-disagg-1_wiredtiger_disagg_amazon2023_disagg_stress_e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b_26_08_28_22_37_40.tgz).
Performing S3 put to file 'wiredtiger/amazon2023-disagg-stress/e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b/wt_hang_analyzer/wt-hang-analyzer_schema-disagg-abort-smoke-test-disagg-1_wiredtiger_disagg_amazon2023_disagg_stress_e32567b2d67dc7802dcc9afcf5e0f666dcb12d4b_26_08_28_22_37_40.tgz' in bucket 'build_external' (attempt 1 of 5).
File '/data/mci/5cd8414c47160596ac92db455b333f09/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 13.799595ms.
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 281.350199ms.
Finished running post-task commands in 5.476301093s.
reading test log spec; falling back to default spec: open /data/mci/5cd8414c47160596ac92db455b333f09/build/TestLogs/log_spec.yaml: no such file or directory