You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by an...@apache.org on 2013/11/04 16:40:19 UTC

svn commit: r1538650 - /jackrabbit/oak/trunk/oak-run/run_concurrent.sh

Author: angela
Date: Mon Nov  4 15:40:19 2013
New Revision: 1538650

URL: http://svn.apache.org/r1538650
Log:
OAK-527: benchmark script; type and minor improvement

Modified:
    jackrabbit/oak/trunk/oak-run/run_concurrent.sh

Modified: jackrabbit/oak/trunk/oak-run/run_concurrent.sh
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-run/run_concurrent.sh?rev=1538650&r1=1538649&r2=1538650&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-run/run_concurrent.sh (original)
+++ jackrabbit/oak/trunk/oak-run/run_concurrent.sh Mon Nov  4 15:40:19 2013
@@ -15,7 +15,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 #
-USERS="false true"
+ADMIN="false true"
 RUNTIME=10
 #BENCH=ConcurrentReadAccessControlledTreeTest
 BENCH=ManyUserReadTest
@@ -28,16 +28,16 @@ NUM_ITEMS=10000
 LOG=$BENCH"_$(date +'%Y%m%d_%H%M%S').csv"
 echo "Benchmarks: $BENCH" > $LOG
 echo "Fixtures: $FIXS" >> $LOG
-echo "Users: $USERS" >> $LOG
+echo "Admin User: $ADMIN" >> $LOG
 echo "Runtime: $RUNTIME" >> $LOG
 echo "Num Items: $NUM_ITEMS" >> $LOG
 echo "Concurrency: $THREADS" >> $LOG
 echo "Random User: $RANDOM_USER" >> $LOG
 echo "Profiling: $PROFILE" >> $LOG
 echo "--------------------------------------" >> $LOG
-for user in $USERS
+for user in $ADMIN
     do
-    # we start new VMs for each fixture to minmize memory impacts between them
+    # we start new VMs for each fixture to minimize memory impacts between them
     for fix in $FIXS
 	do
         echo "Executing benchmarks as admin: $user on $fix" | tee -a $LOG