mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-12 16:21:13 +00:00
- Avoid polling when only one input channel is used. - Send only handles for shared memory transport. - Avoid waiting in the rate logger thread when nothing to log. - Hide warnings from generated files - Fix #483
83 lines
1.8 KiB
Bash
Executable File
83 lines
1.8 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
numMsgs="0"
|
|
msgSize="1000000"
|
|
transport="zeromq"
|
|
sameMsg="true"
|
|
affinity="false"
|
|
affinitySamp=""
|
|
affinitySink=""
|
|
|
|
|
|
if [[ $1 =~ ^[0-9]+$ ]]; then
|
|
msgSize=$1
|
|
fi
|
|
|
|
if [[ $2 =~ ^[0-9]+$ ]]; then
|
|
numMsgs=$2
|
|
fi
|
|
|
|
if [[ $3 =~ ^[a-z]+$ ]]; then
|
|
transport=$3
|
|
fi
|
|
|
|
if [[ $4 =~ ^[a-z]+$ ]]; then
|
|
sameMsg=$4
|
|
fi
|
|
|
|
if [[ $5 =~ ^[a-z]+$ ]]; then
|
|
affinity=$5
|
|
fi
|
|
|
|
|
|
echo "Starting benchmark with following settings:"
|
|
|
|
echo ""
|
|
echo "message size: $msgSize bytes"
|
|
|
|
if [ $numMsgs = 0 ]; then
|
|
echo "number of messages: unlimited"
|
|
else
|
|
echo "number of messages: $numMsgs"
|
|
fi
|
|
|
|
echo "transport: $transport"
|
|
|
|
if [ $sameMsg = "true" ]; then
|
|
echo "resend same message: yes, using Copy() method to resend the same message"
|
|
else
|
|
echo "resend same message: no, allocating each message separately"
|
|
fi
|
|
|
|
if [ $affinity = "true" ]; then
|
|
affinitySamp="taskset -c 0"
|
|
affinitySink="taskset -c 1"
|
|
echo "affinity: assigning sampler to core 0, sink to core 1"
|
|
else
|
|
echo ""
|
|
fi
|
|
|
|
echo ""
|
|
echo "Usage: startBenchmark [message size=1000000] [number of messages=0] [transport=zeromq/nanomsg/shmem] [resend same message=true] [affinity=false]"
|
|
|
|
SAMPLER="bsampler"
|
|
SAMPLER+=" --id bsampler1"
|
|
#SAMPLER+=" --io-threads 2"
|
|
#SAMPLER+=" --control static"
|
|
SAMPLER+=" --transport $transport"
|
|
SAMPLER+=" --msg-size $msgSize"
|
|
SAMPLER+=" --same-msg $sameMsg"
|
|
# SAMPLER+=" --msg-rate 1000"
|
|
SAMPLER+=" --num-msgs $numMsgs"
|
|
SAMPLER+=" --mq-config @CMAKE_BINARY_DIR@/bin/config/benchmark.json"
|
|
xterm -geometry 90x23+0+0 -hold -e $affinitySamp @CMAKE_BINARY_DIR@/bin/$SAMPLER &
|
|
|
|
SINK="sink"
|
|
SINK+=" --id sink1"
|
|
#SINK+=" --io-threads 2"
|
|
#SINK+=" --control static"
|
|
SINK+=" --transport $transport"
|
|
SINK+=" --num-msgs $numMsgs"
|
|
SINK+=" --mq-config @CMAKE_BINARY_DIR@/bin/config/benchmark.json"
|
|
xterm -geometry 90x23+550+0 -hold -e $affinitySink @CMAKE_BINARY_DIR@/bin/$SINK &
|