Return-Path: X-Original-To: apmail-jackrabbit-oak-commits-archive@minotaur.apache.org Delivered-To: apmail-jackrabbit-oak-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D733210F50 for ; Mon, 4 Nov 2013 15:40:54 +0000 (UTC) Received: (qmail 97981 invoked by uid 500); 4 Nov 2013 15:40:44 -0000 Delivered-To: apmail-jackrabbit-oak-commits-archive@jackrabbit.apache.org Received: (qmail 97888 invoked by uid 500); 4 Nov 2013 15:40:42 -0000 Mailing-List: contact oak-commits-help@jackrabbit.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: oak-dev@jackrabbit.apache.org Delivered-To: mailing list oak-commits@jackrabbit.apache.org Received: (qmail 97794 invoked by uid 99); 4 Nov 2013 15:40:40 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Nov 2013 15:40:40 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Nov 2013 15:40:39 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 6A67B23889E3; Mon, 4 Nov 2013 15:40:19 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1538650 - /jackrabbit/oak/trunk/oak-run/run_concurrent.sh Date: Mon, 04 Nov 2013 15:40:19 -0000 To: oak-commits@jackrabbit.apache.org From: angela@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20131104154019.6A67B23889E3@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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