123456789101112131415161718192021222324252627282930 |
- #!/usr/bin/env bash
- #host=39.104.80.229
- host=127.0.0.1
- #dataCountPerPointArray=(1000 2000 3000 5000 10000 20000 30000 50000 100000)
- dataCountPerPointArray=(1000)
- #pointCountArray=(2 3 5 10)
- pointCountArray=(1)
- index=1
- beginDate="2021-06-01 00:00:00"
- echo beginDate:beginDate
- for(( i=0;i<${#pointCountArray[@]};i++))
- do
- pointCount=${pointCountArray[i]}
- for(( j=0;j<${#dataCountPerPointArray[@]};j++))
- do
- #index=`expr $index + 1`
- echo "[${index}] test"
- dataCountPerPoint=${dataCountPerPointArray[j]}
- pointNamePrefix="pointName${index}_"
- echo "----test insert pointCount:${pointCount} dataCountPerPoint:${dataCountPerPoint}"
- java -cp ./lib/influxdb.jar demo.allInsert.InsertHistoricalRandomData \
- --host $host --pointNamePrefix ${pointNamePrefix} --pointCount ${pointCount} \
- --dataCountPerPoint ${dataCountPerPoint} --beginDate "$beginDate" --period 15000 \
- --seed 1 --mean 10 --variance 1 --debug 0 2>&1 | tee -a ./log/influxdb/out.log
- done
- done
|