summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/third_party/wiredtiger/import.data2
-rwxr-xr-xsrc/third_party/wiredtiger/tools/run_parallel.sh11
2 files changed, 8 insertions, 5 deletions
diff --git a/src/third_party/wiredtiger/import.data b/src/third_party/wiredtiger/import.data
index ea2cf3d0064..6343c2fb15b 100644
--- a/src/third_party/wiredtiger/import.data
+++ b/src/third_party/wiredtiger/import.data
@@ -2,5 +2,5 @@
"vendor": "wiredtiger",
"github": "wiredtiger/wiredtiger.git",
"branch": "mongodb-master",
- "commit": "000a87af63b38b740fd0edc135338edfe2480e64"
+ "commit": "374c2c9308e5683e8794bde0cbbf33f717898551"
}
diff --git a/src/third_party/wiredtiger/tools/run_parallel.sh b/src/third_party/wiredtiger/tools/run_parallel.sh
index 3c8489ccd3b..9a05da66f0c 100755
--- a/src/third_party/wiredtiger/tools/run_parallel.sh
+++ b/src/third_party/wiredtiger/tools/run_parallel.sh
@@ -39,14 +39,17 @@ echo " num_iter: $num_iter"
outf=./outfile.txt
for i in $(seq $num_iter); do
- echo "Starting iteration $i" >> $outf
- echo "Starting iteration $i"
+ echo "==== Starting iteration $i ====" >> $outf
+ echo "==== Starting iteration $i ===="
+
+ echo "Disk usage and free space for the current drive:"
+ df -h .
process_ids=()
# start the commands in parallel
for((t=1; t<=num_parallel; t++)); do
- echo "Starting parallel command $t (of $num_parallel) in iteration $i (of $num_iter)" >> nohup.out.$t
- eval nohup $command >> nohup.out.$t 2>&1 &
+ echo "Starting parallel command $t (of $num_parallel) in iteration $i (of $num_iter)" >> $outf
+ eval nohup $command > nohup.out.$t 2>&1 &
process_ids[$t]=$!
done