Skip to content

Commit 4e8d913

Browse files
committed
separate the reply part into separate grpc
Signed-off-by: Zhiting Zhu <zhitingz@cs.utexas.edu>
1 parent 4f33818 commit 4e8d913

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tmp/local/run.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ handle_options "$@"
5454
FUNC_IDS="20 30 40 50 60 70 80 90 100"
5555
FPROCESS=$BASE_DIR/../sharedlog-stream/bin/nexmark_handler_debug
5656
REMOTE_TXN_PROCESS=$BASE_DIR/../sharedlog-stream/bin/remote_txn_mngr_grpc_debug
57+
CHKPT_MNGR_PROCESS=$BASE_DIR/../sharedlog-stream/bin/chkptmngr_server_debug
5758

5859
docker-compose -f $SCRIPT_DIR/docker-compose.yml up -d
5960

@@ -199,14 +200,16 @@ for i in $ENGINES_ON_STORAGES; do
199200
cnt=$(($cnt + 1))
200201
done
201202

203+
$CHKPT_MNGR_PROCESS &
204+
PIDS+=($!)
205+
202206
cnt=1
203207
for i in $ENGINES; do
204208
mkdir -p $BASE_DIR/tmp/output/node$i
205-
port=$(( 6060 + ${cnt} ))
206209
for func in $FUNC_IDS; do
207210
GOGC=200 FAAS_GO_MAX_PROC_FACTOR=1 FAAS_BUILD_TYPE=release \
208211
RTXN_MNGR_ADDR="127.0.0.1:5051,127.0.0.1:5052,127.0.0.1:5053,127.0.0.1:5054" RTXN_MNGR_NODES="9,10,11,12" \
209-
CHKPT_MNGR_ADDR="127.0.0.1:6061" CHKPT_MNGR_PORT=$port \
212+
CHKPT_MNGR_ADDR="127.0.0.1:6060" \
210213
MEASURE_SINK=1 MEASURE_SRC=1 BUFPUSH=1 REDIS_ADDR=127.0.0.1:6666 \
211214
CREATE_SNAPSHOT=1 PARALLEL_RESTORE=1 ASYNC_SECOND_PHASE=1 \
212215
$BASE_DIR/bin/$BUILD_TYPE/launcher \

0 commit comments

Comments
 (0)