Preserve order of records within cluster PAZ-902
[pazpar2-moved-to-github.git] / perf / bash / par.sh
index d85b598..7072a3f 100755 (executable)
@@ -1,9 +1,35 @@
 #!/bin/bash
-DELAY=0.1
-NUMBER=10
-let i=0
-while test $i -lt $NUMBER; do
-       ./client.sh $i >$i.log 2>&1 &
-       sleep $DELAY
-       let i=$i+1
+DELAY=0.001
+WAIT=5
+NUMBER=5
+ROUNDS=5
+PORT=9004
+SERVICE=perf_t
+SHUTDOWN=1
+HOST=127.0.0.1
+if test -n "$1"; then
+       . $1
+fi
+let r=0
+if [ "$SETTINGS" != "" ] ; then 
+    SETTINGS_OPT="--settings=\"$SETTINGS\" " 
+    echo $SETTINGS_OPT
+else
+    unset SETTINGS_OPT
+fi
+
+while test $r -lt $ROUNDS; do
+       echo "$r"
+       let i=0
+       while test $i -lt $NUMBER; do
+           ./pp2client.sh --outfile=$r.$i --prefix=http://$HOST:${PORT}/search.pz2 --service=$SERVICE $SETTINGS_OPT >$r.$i.log 2>&1 &
+           sleep $DELAY
+           let i=$i+1
+       done
+       sleep $WAIT
+       let r=$r+1
 done
+wait
+if [ "$SHUTDOWN" == "1" ] ; then 
+    wget -O x "http://localhost:${PORT}/search.pz2?command=exit"
+fi