150 lines
7.5 KiB
Bash
Executable File
150 lines
7.5 KiB
Bash
Executable File
#!/bin/bash
|
||
|
||
|
||
# Color setting
|
||
RED='\033[0;31m'
|
||
GREEN='\033[1;32m'
|
||
GREEN_DARK='\033[0;32m'
|
||
GREEN_UNDERLINE='\033[4;32m'
|
||
NC='\033[0m'
|
||
#set -x
|
||
echo
|
||
echo "---------------Generating Data-----------------"
|
||
echo
|
||
|
||
echo
|
||
echo "Prepare data for TDengine...."
|
||
#bin/bulk_data_gen -seed 123 -format tdengine -tdschema-file config/TDengineSchema.toml -scale-var 100 -use-case devops -timestamp-start "2018-01-01T00:00:00Z" -timestamp-end "2018-01-02T00:00:00Z" > data/tdengine.dat
|
||
bin/bulk_data_gen -seed 123 -format tdengine -sampling-interval 1s -tdschema-file config/TDengineSchema.toml -scale-var 10 -use-case devops -timestamp-start "2018-01-01T00:00:00Z" -timestamp-end "2018-01-02T00:00:00Z" > data/tdengine.dat
|
||
|
||
|
||
echo
|
||
echo -e "Start test TDengine, result in ${GREEN}Green line${NC}"
|
||
|
||
for i in {1..5}; do
|
||
TDENGINERES=`cat data/tdengine.dat |bin/bulk_load_tdengine --url 127.0.0.1:0 --batch-size 300 -do-load -report-tags n1 -workers 20 -fileout=false| grep loaded`
|
||
#TDENGINERES=`cat data/tdengine.dat |gunzip|bin/bulk_load_tdengine --url 127.0.0.1:0 --batch-size 300 -do-load -report-tags n1 -workers 10 -fileout=false| grep loaded`
|
||
echo
|
||
echo -e "${GREEN}TDengine writing result:${NC}"
|
||
echo -e "${GREEN}$TDENGINERES${NC}"
|
||
DATA=`echo $TDENGINERES|awk '{print($2)}'`
|
||
TMP=`echo $TDENGINERES|awk '{print($5)}'`
|
||
TDWTM=`echo ${TMP%s*}`
|
||
|
||
[ -z "$TDWTM" ] || break
|
||
done
|
||
|
||
|
||
|
||
echo
|
||
echo "------------------Querying Data-----------------"
|
||
echo
|
||
|
||
sleep 10
|
||
echo
|
||
echo "start query test, query max from 8 hosts group by 1 hour, TDengine"
|
||
echo
|
||
|
||
#Test case 1
|
||
#测试用例1,查询所有数据中,用8个hostname标签进行匹配,匹配出这8个hostname对应的模拟服务器CPU数据中的usage_user这个监控数据的最大值。
|
||
#select max(usage_user) from cpu where(hostname='host_a' and hostname='host_b'and hostname='host_c'and hostname='host_d'and hostname='host_e'and hostname='host_f' and hostname='host_g'and hostname='host_h') ;
|
||
# a,b,c,d,e,f,g,h are random 8 numbers.
|
||
for i in {1..5}; do
|
||
TDQS1=`bin/bulk_query_gen -seed 123 -format tdengine -query-type 8-host-all -scale-var 10 -queries 1000 | bin/query_benchmarker_tdengine -urls="http://127.0.0.1:6020" -workers 50 -print-interval 0|grep wall`
|
||
echo
|
||
echo -e "${GREEN}TDengine query test case 1 result:${NC}"
|
||
echo -e "${GREEN}$TDQS1${NC}"
|
||
TMP=`echo $TDQS1|awk '{print($4)}'`
|
||
TDQ1=`echo ${TMP%s*}`
|
||
|
||
[ -z "$TDQ1" ] || break
|
||
done
|
||
|
||
#Test case 2
|
||
#测试用例2,查询所有数据中,用8个hostname标签进行匹配,匹配出这8个hostname对应的模拟服务器CPU数据中的usage_user这个监控数据,以1小时为粒度,查询每1小时的最大值。
|
||
#select max(usage_user) from cpu where(hostname='host_a' and hostname='host_b'and hostname='host_c'and hostname='host_d'and hostname='host_e'and hostname='host_f' and hostname='host_g'and hostname='host_h') interval(1h);
|
||
# a,b,c,d,e,f,g,h are random 8 numbers
|
||
for i in {1..5}; do
|
||
TDQS2=`bin/bulk_query_gen -seed 123 -format tdengine -query-type 8-host-allbyhr -scale-var 10 -queries 1000 | bin/query_benchmarker_tdengine -urls="http://127.0.0.1:6020" -workers 50 -print-interval 0|grep wall`
|
||
|
||
echo
|
||
echo -e "${GREEN}TDengine query test case 2 result:${NC}"
|
||
echo -e "${GREEN}$TDQS2${NC}"
|
||
TMP=`echo $TDQS2|awk '{print($4)}'`
|
||
TDQ2=`echo ${TMP%s*}`
|
||
|
||
[ -z "$TDQ2" ] || break
|
||
done
|
||
|
||
#Test case 3
|
||
#测试用例3,测试用例3,随机查询12个小时的数据,用8个hostname标签进行匹配,匹配出这8个hostname对应的模拟服务器CPU数据中的usage_user这个监控数据,以10分钟为粒度,查询每10分钟的最大值
|
||
#select max(usage_user) from cpu where(hostname='host_a' and hostname='host_b'and hostname='host_c'and hostname='host_d'and hostname='host_e'and hostname='host_f' and hostname='host_g'and hostname='host_h') and time >x and time <y interval(10m);
|
||
# a,b,c,d,e,f,g,h are random 8 numbers, y-x =12 hour
|
||
for i in {1..5}; do
|
||
TDQS3=`bin/bulk_query_gen -seed 123 -format tdengine -query-type 8-host-12-hr -scale-var 10 -queries 1000 | bin/query_benchmarker_tdengine -urls="http://127.0.0.1:6020" -workers 50 -print-interval 0|grep wall`
|
||
echo
|
||
echo -e "${GREEN}TDengine query test case 3 result:${NC}"
|
||
echo -e "${GREEN}$TDQS3${NC}"
|
||
TMP=`echo $TDQS3|awk '{print($4)}'`
|
||
TDQ3=`echo ${TMP%s*}`
|
||
|
||
[ -z "$TDQ3" ] || break
|
||
done
|
||
|
||
#Test case 4
|
||
#测试用例4,随机查询1个小时的数据,用8个hostname标签进行匹配,匹配出这8个hostname对应的模拟服务器CPU数据中的usage_user这个监控数据,以1分钟为粒度,查询每1分钟的最大值
|
||
#select max(usage_user) from cpu where(hostname='host_a' and hostname='host_b'and hostname='host_c'and hostname='host_d'and hostname='host_e'and hostname='host_f' and hostname='host_g'and hostname='host_h') and time >x and time <y interval(10m);
|
||
# a,b,c,d,e,f,g,h are random 8 numbers, y-x =1 hours
|
||
for i in {1..5}; do
|
||
TDQS4=`bin/bulk_query_gen -seed 123 -format tdengine -query-type 8-host-1-hr -scale-var 10 -queries 1000 | bin/query_benchmarker_tdengine -urls="http://127.0.0.1:6020" -workers 50 -print-interval 0|grep wall`
|
||
echo
|
||
echo -e "${GREEN}TDengine query test case 4 result:${NC}"
|
||
echo -e "${GREEN}$TDQS4${NC}"
|
||
TMP=`echo $TDQS4|awk '{print($4)}'`
|
||
TDQ4=`echo ${TMP%s*}`
|
||
|
||
[ -z "$TDQ4" ] || break
|
||
done
|
||
|
||
sleep 10
|
||
|
||
|
||
|
||
echo
|
||
echo
|
||
echo "======================================================"
|
||
echo " tsdb performance comparision "
|
||
echo "======================================================"
|
||
echo -e " Writing $DATA records test takes: "
|
||
printf " TDengine | %-4.2f Seconds \n" $TDWTM
|
||
echo "------------------------------------------------------"
|
||
echo " Query test cases: "
|
||
echo " case 1: select the max(value) from all data "
|
||
echo " filtered out 8 hosts "
|
||
echo " Query test case 1 takes: "
|
||
printf " TDengine | %-4.5f Seconds \n" $TDQ1
|
||
echo "------------------------------------------------------"
|
||
echo " case 2: select the max(value) from all data "
|
||
echo " filtered out 8 hosts with an interval of 1 hour "
|
||
echo " case 2 takes: "
|
||
printf " TDengine | %-4.2f Seconds \n" $TDQ2
|
||
echo "------------------------------------------------------"
|
||
echo " case 3: select the max(value) from random 12 hours"
|
||
echo " data filtered out 8 hosts with an interval of 10 min "
|
||
echo " filtered out 8 hosts interval(1h) "
|
||
echo " case 3 takes: "
|
||
printf " TDengine | %-4.2f Seconds \n" $TDQ3
|
||
echo "------------------------------------------------------"
|
||
echo " case 4: select the max(value) from random 1 hour data "
|
||
echo " data filtered out 8 hosts with an interval of 1 min "
|
||
echo " case 4 takes: "
|
||
printf " TDengine | %-4.2f Seconds \n" $TDQ4
|
||
echo "------------------------------------------------------"
|
||
echo
|
||
|
||
today=`date +"%Y%m%d"`
|
||
echo "${today}, ${TDWTM}, ${TDQ1}, ${TDQ2}, ${TDQ3}, ${TDQ4}" >> /root/perftest-1d-$1-report.csv
|
||
|
||
#bulk_query_gen/bulk_query_gen -format influx-http -query-type 1-host-1-hr -scale-var 10 -queries 1000 | query_benchmarker_influxdb/query_benchmarker_influxdb -urls="http://172.26.89.231:8086"
|
||
#bulk_query_gen/bulk_query_gen -format tdengine -query-type 1-host-1-hr -scale-var 10 -queries 1000 | query_benchmarker_tdengine/query_benchmarker_tdengine -urls="http://172.26.89.231:6020"
|