- #!/usr/bin/env bash
- ROOT=$(cd `dirname $0`/../../../; pwd)
- cd $ROOT
- source $ROOT/shell/influxdb/common.sh
- pointCountArray=(1 2 3 5 10 20 30 50 100 200 300 500 1000 2000 3000 5000 10000 20000)
- for(( i=0;i<${#pointCountArray[@]};i++))
- do
- echo "----test query realtime data pointCount:${pointCountArray[i]}"
- java -cp ./lib/influxdb.jar demo.query.QueryDataAtTime \
- --host $host --pointNamePrefix pointName1_ --pointCount ${pointCountArray[i]} \
- --time "2017-06-01 00:00:00" --showQueryResult 3 2>&1 | tee -a ./log/influxdb/out.log
- done
|