|
| 1 | +#!/bin/bash |
| 2 | + |
| 3 | +# |
| 4 | +# Kieker benchmark script |
| 5 | +# |
| 6 | +# Usage: benchmark.sh |
| 7 | + |
| 8 | +# configure base dir |
| 9 | +BASE_DIR=$(cd "$(dirname "$0")"; pwd) |
| 10 | +MAIN_DIR="${BASE_DIR}/../.." |
| 11 | + |
| 12 | +# Hotfix for ASPECTJ |
| 13 | +# https://stackoverflow.com/questions/70411097/instrument-java-17-with-aspectj |
| 14 | +JAVA_VERSION=$(java -version 2>&1 | grep version | sed 's/^.* "\([0-9\.]*\).*/\1/g') |
| 15 | +if [ "${JAVA_VERSION}" != "1.8.0" ] ; then |
| 16 | + export JAVA_OPTS="--add-opens java.base/java.lang=ALL-UNNAMED" |
| 17 | + echo "Setting \$JAVA_OPTS, since Java version is bigger than 8" |
| 18 | +fi |
| 19 | + |
| 20 | +# |
| 21 | +# source functionality |
| 22 | +# |
| 23 | + |
| 24 | +if [ ! -d "${BASE_DIR}" ] ; then |
| 25 | + echo "Base directory ${BASE_DIR} does not exist." |
| 26 | + exit 1 |
| 27 | +fi |
| 28 | + |
| 29 | +if [ -f "${MAIN_DIR}/common-functions.sh" ] ; then |
| 30 | + source "${MAIN_DIR}/common-functions.sh" |
| 31 | +else |
| 32 | + echo "Missing library: ${MAIN_DIR}/common-functions.sh" |
| 33 | + exit 1 |
| 34 | +fi |
| 35 | + |
| 36 | +# load configuration and common functions |
| 37 | +if [ -f "${BASE_DIR}/config.rc" ] ; then |
| 38 | + source "${BASE_DIR}/config.rc" |
| 39 | +else |
| 40 | + echo "Missing configuration: ${BASE_DIR}/config.rc" |
| 41 | + exit 1 |
| 42 | +fi |
| 43 | + |
| 44 | +if [ -f "${BASE_DIR}/functions.sh" ] ; then |
| 45 | + source "${BASE_DIR}/functions.sh" |
| 46 | +else |
| 47 | + echo "Missing: ${BASE_DIR}/functions.sh" |
| 48 | + exit 1 |
| 49 | +fi |
| 50 | +if [ -f "${BASE_DIR}/labels.sh" ] ; then |
| 51 | + source "${BASE_DIR}/labels.sh" |
| 52 | +else |
| 53 | + echo "Missing file: ${BASE_DIR}/labels.sh" |
| 54 | + exit 1 |
| 55 | +fi |
| 56 | + |
| 57 | +if [ -z "$MOOBENCH_CONFIGURATIONS" ] |
| 58 | +then |
| 59 | + MOOBENCH_CONFIGURATIONS="0 1 2 4 5" |
| 60 | + echo "Setting default configuration $MOOBENCH_CONFIGURATIONS (without TextLogStreamHandler)" |
| 61 | +fi |
| 62 | +echo "Running configurations: $MOOBENCH_CONFIGURATIONS" |
| 63 | + |
| 64 | +# |
| 65 | +# Setup |
| 66 | +# |
| 67 | + |
| 68 | +info "----------------------------------" |
| 69 | +info "Setup..." |
| 70 | +info "----------------------------------" |
| 71 | + |
| 72 | +cd "${BASE_DIR}" |
| 73 | + |
| 74 | +# load agent |
| 75 | +getAgent |
| 76 | + |
| 77 | +checkDirectory data-dir "${DATA_DIR}" create |
| 78 | +checkFile log "${DATA_DIR}/kieker.log" clean |
| 79 | +cleanupResults |
| 80 | +mkdir -p $RESULTS_DIR |
| 81 | +PARENT=`dirname "${RESULTS_DIR}"` |
| 82 | +checkDirectory result-base "${PARENT}" |
| 83 | + |
| 84 | +checkFile AspectJ-Agent "${AGENT}" |
| 85 | + |
| 86 | +checkExecutable java "${JAVA_BIN}" |
| 87 | +checkExecutable moobench "${MOOBENCH_BIN}" |
| 88 | +checkFile R-script "${RSCRIPT_PATH}" |
| 89 | + |
| 90 | +showParameter |
| 91 | + |
| 92 | +TIME=`expr ${METHOD_TIME} \* ${TOTAL_NUM_OF_CALLS} / 1000000000 \* 4 \* ${RECURSION_DEPTH} \* ${NUM_OF_LOOPS} + ${SLEEP_TIME} \* 4 \* ${NUM_OF_LOOPS} \* ${RECURSION_DEPTH} + 50 \* ${TOTAL_NUM_OF_CALLS} / 1000000000 \* 4 \* ${RECURSION_DEPTH} \* ${NUM_OF_LOOPS} ` |
| 93 | +info "Experiment will take circa ${TIME} seconds." |
| 94 | + |
| 95 | +# general server arguments |
| 96 | +JAVA_ARGS="-Xms1G -Xmx2G" |
| 97 | + |
| 98 | +LTW_ARGS="-javaagent:elastic-apm-agent.jar" |
| 99 | + |
| 100 | +KIEKER_ARGS="-Dlog4j.configuration=log4j.cfg -Dkieker.monitoring.name=KIEKER-BENCHMARK -Dkieker.monitoring.adaptiveMonitoring.enabled=false -Dkieker.monitoring.periodicSensorsExecutorPoolSize=0" |
| 101 | + |
| 102 | +# JAVA_ARGS used to configure and setup a specific writer |
| 103 | +declare -a WRITER_CONFIG |
| 104 | +# Receiver setup if necessary |
| 105 | +declare -a RECEIVER |
| 106 | +# Title |
| 107 | +declare -a TITLE |
| 108 | + |
| 109 | +# |
| 110 | +# Different writer setups |
| 111 | +# |
| 112 | +WRITER_CONFIG[0]="" |
| 113 | +WRITER_CONFIG[1]="-Delastic.apm.service_name=moobench-benchmark -Delastic.apm.application_packages=moobench.application -Delastic.apm.server_url=http://127.0.0.1:8200" |
| 114 | + |
| 115 | + |
| 116 | + |
| 117 | +writeConfiguration |
| 118 | +checkMoobenchConfiguration |
| 119 | +# |
| 120 | +# Run benchmark |
| 121 | +# |
| 122 | + |
| 123 | +info "----------------------------------" |
| 124 | +info "Running benchmark..." |
| 125 | +info "----------------------------------" |
| 126 | + |
| 127 | +for ((i=1;i<=${NUM_OF_LOOPS};i+=1)) |
| 128 | +do |
| 129 | + info "## Starting iteration ${i}/${NUM_OF_LOOPS}" |
| 130 | + echo "## Starting iteration ${i}/${NUM_OF_LOOPS}" >> "${DATA_DIR}/kieker.log" |
| 131 | + |
| 132 | + executeBenchmark |
| 133 | + printIntermediaryResults "${i}" |
| 134 | +done |
| 135 | + |
| 136 | +# Create R labels |
| 137 | +LABELS=$(createRLabels) |
| 138 | +runStatistics |
| 139 | + |
| 140 | +cleanupResults |
| 141 | + |
| 142 | +mv "${DATA_DIR}/kieker.log" "${RESULTS_DIR}/kieker.log" |
| 143 | +[ -f "${RESULTS_DIR}/hotspot-1-${RECURSION_DEPTH}-1.log" ] && grep "<task " "${RESULTS_DIR}/"hotspot-*.log > "${RESULTS_DIR}/java.log" |
| 144 | +[ -f "${DATA_DIR}/errorlog.txt" ] && mv "${DATA_DIR}/errorlog.txt" "${RESULTS_DIR}" |
| 145 | + |
| 146 | +checkFile results.yaml "${RESULTS_DIR}/results.yaml" |
| 147 | +checkFile results.yaml "${RESULTS_DIR}/results.zip" |
| 148 | + |
| 149 | +info "Done." |
| 150 | + |
| 151 | +exit 0 |
| 152 | +# end |
0 commit comments