- #!/usr/bin/env bash
- ROOT=$(cd `dirname $0`/../../; pwd)
- cd $ROOT
- source $ROOT/shell/tsdb/common.sh
- for dataCountPerPoint in 1000 2000 3000 5000 10000 20000 30000 50000 100000 200000 300000 500000 1000000
- do
- echo "----test insert dataCountPerPoint:${dataCountPerPoint}"
- java -cp ./lib/tsdb.jar -Xmx8000m demo.allInsert.InsertHistoricalRandomData \
- --host=$host --pointNamePrefix=pointName_ --pointCount=1 --dataCountPerPoint=${dataCountPerPoint} \
- --beginDate="2017-06-01 00:00:00" --period=7000 \
- --seed=1 --mean=10 --variance=0.1 --debug=0 2>&1 | tee -a ./log/tsdb/out.log
- done
|