#!/usr/bin/env bash #host=39.104.80.229 host=127.0.0.1 for days in 1 2 3 4 7 15 30 60 90 180 360 do echo "----test query range days:$days" beginDate="2021-03-01 00:00:00" echo beginDate:beginDate endDate=$(date -d "${beginDate} ${days} days" +"%Y-%m-%d %H:%M:%S") echo endDate:$endDate java -cp ./lib/tsdb.jar demo.query.histQuery.QueryHistData \ --host=$host --pointNamePrefix=pointName_ --pointCount=1 \ --beginDate="$beginDate" --endDate="$endDate" \ --showQueryResult=10000 2>&1 | tee -a ./log/tsdb/out.log done