1234567891011121314151617181920212223 |
- #!/usr/bin/env bash
- #host=39.104.80.229
- host=127.0.0.1
- clientCount=3
- pointCountArray=(1 2 3 5 10 20 30 50 100 200 300 500 1000 2000 3000 5000 10000 20000 30000 50000 100000)
- for(( j=0;j<${#pointCountArray[@]};j++))
- do
- for ((i=0; i<${clientCount}; i++))
- do
- echo "----test concurrent realtime query clientIndex:${i} pointCount:${pointCountArray[j]}"
- java -cp ./lib/tsdb.jar demo.query.QueryDataAtTime \
- --host=$host --pointNamePrefix=pointName_ --pointCount=${pointCountArray[j]} \
- --showQueryResult=3 2>> ${i}.log &
- done
- echo sleep 6
- sleep 6
- done
|