将 csv 导入 influx

Import csv to influx

提问人:imac 提问时间:11/11/2023 更新时间:11/11/2023 访问量:5

问:

我需要更正我的 Influx 数据库中的一些数据,并使用以下方法成功导出:

influx -database graf -username graf -password graf -format csv -execute "select * from net2 where "host" = 'ahc' and time <= 1698222663001569086" > ahc.export

但我无法弄清楚如何重新导入更正后的 csv。在众多中,我尝试过

influx -database graf -username graf -password graf -execute "write net2 -f ahc.import.csv"

但我明白了

ERR: error parsing query: found WRITE, expected SELECT, DELETE, SHOW, CREATE, DROP, EXPLAIN, GRANT, REVOKE, ALTER, SET, KILL at line 1, char 1

这些似乎都与我需要做的事情无关......

csv 导入 命令行界面 influxdb

评论


答: 暂无答案