导出数据:
influx_inspect export -database=mydb -datadir=/var/lib/influxdb/data -start=2018-01-30T00:00:00Z -end=2018-01-31T00:00:00Z -out=xx.txt
也可以使用
-compress
参数生成的数据为压缩.gz文件
导入数据:
influx -import -compressed -path=dumpfile -pps=1000 -destdb=newdb -destrp=newrp
其中的-destdb 及-destrp可以不用指定,-pps 指定的是导入的速度(每秒中导入的point数),和服务器的配置有关,为保证生产数据库的稳定,请一定要指定此值.