154 lines
5.8 KiB
Bash
Executable File
154 lines
5.8 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Coloured Echoes #
|
|
function red_echo { echo -e "\033[31m$@\033[0m"; } #
|
|
function green_echo { echo -e "\033[32m$@\033[0m"; } #
|
|
function yellow_echo { echo -e "\033[33m$@\033[0m"; } #
|
|
function white_echo { echo -e "\033[1;37m$@\033[0m"; } #
|
|
# Coloured Printfs #
|
|
function red_printf { printf "\033[31m$@\033[0m"; } #
|
|
function green_printf { printf "\033[32m$@\033[0m"; } #
|
|
function yellow_printf { printf "\033[33m$@\033[0m"; } #
|
|
function white_printf { printf "\033[1;37m$@\033[0m"; } #
|
|
# Debugging Outputs #
|
|
function white_brackets { local args="$@"; white_printf "["; printf "${args}"; white_printf "]"; } #
|
|
function echoInfo { local args="$@"; white_brackets $(green_printf "INFO") && echo " ${args}"; } #
|
|
function echoWarn { local args="$@"; echo "$(white_brackets "$(yellow_printf "WARN")" && echo " ${args}";)" 1>&2; } #
|
|
function echoError { local args="$@"; echo "$(white_brackets "$(red_printf "ERROR")" && echo " ${args}";)" 1>&2; } #
|
|
|
|
function setMaxConnections {
|
|
echo "/etc/taos/taos.cfg maxConnection will be set to $1"
|
|
|
|
hasText=`grep "maxConnections" /etc/taos/taos.cfg`
|
|
if [[ -z "$hasText" ]]; then
|
|
echo "maxConnections $1" >> /etc/taos/taos.cfg
|
|
else
|
|
sed -i 's/^maxConnections.*$/maxConnections '"$1"'/g' /etc/taos/taos.cfg
|
|
fi
|
|
}
|
|
|
|
function setWal {
|
|
echo "/etc/taos/taos.cfg walLevel will be set to $1"
|
|
|
|
hasText=`grep "walLevel" /etc/taos/taos.cfg`
|
|
if [[ -z "$hasText" ]]; then
|
|
echo "walLevel $1" >> /etc/taos/taos.cfg
|
|
else
|
|
sed -i 's/^walLevel.*$/walLevel '"$1"'/g' /etc/taos/taos.cfg
|
|
fi
|
|
}
|
|
|
|
function collectSysInfo {
|
|
rm sysinfo.log
|
|
grep model /proc/cpuinfo | tail -n1 | tee sysinfo.log
|
|
grep cores /proc/cpuinfo | tail -n1 | tee -a sysinfo.log
|
|
grep MemTotal /proc/meminfo | tee -a sysinfo.log
|
|
grep "^[^#;]" /etc/taos/taos.cfg | tee taos.cfg
|
|
}
|
|
|
|
function buildTDengine {
|
|
cd /root/TDengine
|
|
|
|
git remote update
|
|
REMOTE_COMMIT=`git rev-parse --short remotes/origin/develop`
|
|
LOCAL_COMMIT=`git rev-parse --short @`
|
|
|
|
echo " LOCAL: $LOCAL_COMMIT"
|
|
echo "REMOTE: $REMOTE_COMMIT"
|
|
if [ "$LOCAL_COMMIT" == "$REMOTE_COMMIT" ]; then
|
|
echo "repo up-to-date"
|
|
else
|
|
echo "repo need to pull"
|
|
git pull
|
|
|
|
LOCAL_COMMIT=`git rev-parse --short @`
|
|
cd debug
|
|
rm -rf *
|
|
cmake ..
|
|
make > /dev/null
|
|
make install
|
|
fi
|
|
}
|
|
|
|
function restartTaosd {
|
|
systemctl stop taosd
|
|
pkill -KILL -x taosd
|
|
sleep 10
|
|
|
|
rm -rf /mnt/var/log/taos/*
|
|
rm -rf /mnt/var/lib/taos/*
|
|
|
|
taosd 2>&1 > /dev/null &
|
|
sleep 10
|
|
}
|
|
|
|
function sendReport {
|
|
receiver="sdsang@taosdata.com, sangshuduo@gmail.com"
|
|
mimebody="MIME-Version: 1.0\nContent-Type: text/html; charset=utf-8\n"
|
|
|
|
echo -e "to: ${receiver}\nsubject: Perf test report ${today}, commit ID: ${LOCAL_COMMIT}\n" | \
|
|
(cat - && uuencode perftest-1d-wal1-$today.log perftest-1d-wal1-$today.log)| \
|
|
(cat - && uuencode perftest-1d-wal1-report.csv perftest-1d-wal1-report-$today.csv) | \
|
|
(cat - && uuencode perftest-1d-wal1-report.png perftest-1d-wal1-report-$today.png) | \
|
|
(cat - && uuencode perftest-13d-wal1-$today.log perftest-13d-wal1-$today.log)| \
|
|
(cat - && uuencode perftest-13d-wal1-report.csv perftest-13d-wal1-report-$today.csv) | \
|
|
(cat - && uuencode perftest-13d-wal1-report.png perftest-13d-wal1-report-$today.png) | \
|
|
(cat - && uuencode taosdemo-wal1-$today.log taosdemo-wal1-$today.log) | \
|
|
(cat - && uuencode taosdemo-wal1-report.csv taosdemo-wal1-report-$today.csv) | \
|
|
(cat - && uuencode taosdemo-rps-wal1-report.csv taosdemo-rps-wal1-report-$today.csv) | \
|
|
(cat - && uuencode taosdemo-wal1-report.png taosdemo-wal1-report-$today.png) | \
|
|
(cat - && uuencode perftest-1d-wal2-$today.log perftest-1d-wal2-$today.log)| \
|
|
(cat - && uuencode perftest-1d-wal2-report.csv perftest-1d-wal2-report-$today.csv) | \
|
|
(cat - && uuencode perftest-1d-wal2-report.png perftest-1d-wal2-report-$today.png) | \
|
|
(cat - && uuencode perftest-13d-wal2-$today.log perftest-13d-wal2-$today.log)| \
|
|
(cat - && uuencode perftest-13d-wal2-report.csv perftest-13d-wal2-report-$today.csv) | \
|
|
(cat - && uuencode perftest-13d-wal2-report.png perftest-13d-wal2-report-$today.png) | \
|
|
(cat - && uuencode taosdemo-wal2-$today.log taosdemo-wal2-$today.log) | \
|
|
(cat - && uuencode taosdemo-wal2-report.csv taosdemo-wal2-report-$today.csv) | \
|
|
(cat - && uuencode taosdemo-rps-wal2-report.csv taosdemo-rps-wal2-report-$today.csv) | \
|
|
(cat - && uuencode sysinfo.log sysinfo.txt) | \
|
|
(cat - && uuencode taos.cfg taos-cfg-$today.txt) | \
|
|
ssmtp "${receiver}"
|
|
}
|
|
|
|
today=`date +"%Y%m%d"`
|
|
cd /root
|
|
echo -e "cron-ran-at-${today}" >> cron.log
|
|
|
|
echoInfo "Build TDengine"
|
|
buildTDengine
|
|
|
|
############################
|
|
setMaxConnections 100
|
|
|
|
############################
|
|
setWal "2"
|
|
|
|
cd /root
|
|
./perftest-tsdb-compare-1d.sh "wal2"
|
|
|
|
cd /root
|
|
./perftest-tsdb-compare-13d.sh "wal2"
|
|
|
|
cd /root
|
|
./perftest-taosdemo.sh "wal2"
|
|
|
|
#############################
|
|
setWal "1"
|
|
|
|
cd /root
|
|
./perftest-tsdb-compare-1d.sh "wal1"
|
|
|
|
cd /root
|
|
./perftest-tsdb-compare-13d.sh "wal1"
|
|
|
|
cd /root
|
|
./perftest-taosdemo.sh "wal1"
|
|
|
|
#############################
|
|
collectSysInfo
|
|
|
|
echoInfo "Send Report"
|
|
sendReport
|
|
echoInfo "End of Test"
|