blob: 9d76f08f80032b740bc0e2133fda45d268bf450b [file] [log] [blame]
Craig Tillere4860192015-02-23 17:10:41 -08001#!/bin/sh
Craig Tillerd4db33d2015-05-21 15:27:05 -07002# Copyright 2015, Google Inc.
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met:
8#
9# * Redistributions of source code must retain the above copyright
10# notice, this list of conditions and the following disclaimer.
11# * Redistributions in binary form must reproduce the above
12# copyright notice, this list of conditions and the following disclaimer
13# in the documentation and/or other materials provided with the
14# distribution.
15# * Neither the name of Google Inc. nor the names of its
16# contributors may be used to endorse or promote products derived from
17# this software without specific prior written permission.
18#
19# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Craig Tillere4860192015-02-23 17:10:41 -080030
31# performs a single qps run with one client and one server
32
33set -ex
34
35cd $(dirname $0)/../../..
36
Craig Tiller6af9ed02015-03-02 22:42:10 -080037killall qps_worker || true
Craig Tiller2d0f36c2015-02-23 23:16:17 -080038
39config=opt
40
Craig Tillere4860192015-02-23 17:10:41 -080041NUMCPUS=`python2.7 -c 'import multiprocessing; print multiprocessing.cpu_count()'`
42
Craig Tiller6af9ed02015-03-02 22:42:10 -080043make CONFIG=$config qps_worker qps_driver -j$NUMCPUS
Craig Tillere4860192015-02-23 17:10:41 -080044
Craig Tiller6af9ed02015-03-02 22:42:10 -080045bins/$config/qps_worker -driver_port 10000 -server_port 10001 &
46PID1=$!
47bins/$config/qps_worker -driver_port 10010 -server_port 10011 &
48PID2=$!
Craig Tillere4860192015-02-23 17:10:41 -080049
Craig Tiller6af9ed02015-03-02 22:42:10 -080050export QPS_WORKERS="localhost:10000,localhost:10010"
Craig Tillere4860192015-02-23 17:10:41 -080051
Craig Tiller2d0f36c2015-02-23 23:16:17 -080052bins/$config/qps_driver $*
Craig Tillere4860192015-02-23 17:10:41 -080053
Craig Tiller6af9ed02015-03-02 22:42:10 -080054kill -2 $PID1 $PID2
Craig Tillere4860192015-02-23 17:10:41 -080055wait
56