Details
-
Task
-
Resolution: Fixed
-
Major - P3
-
None
-
None
-
Server Development Platform
-
Fully Compatible
-
v7.0, v6.0
Description
The list-append.sh script for running Jepsen's list-append test will write the report.json file to stdout. The report.json file quite large (180MB) because it contains logs from the actual tests runs embedded as log_raw. Writing such long log lines is problematic in general, and, in particular, causes searching and filtering to crash Parsley (see EVG-20004). We should delete the cat report.json line from the list-append.sh script.
26
|
$python buildscripts/jepsen_report.py --start_time=$start_time --end_time=$end_time --elapsed=$elapsed_secs --emit_status_files --store ./jepsen-mongodb jepsen-mongodb/jepsen_${task_name}_${execution}.log
|
27
|
exit_code=$?
|
28
|
cat report.json
|