Tips:使用版本:3.0.2.6
(一)TDengine ERROR (80003002): Invalid data format
格式化问题;如缺少必要的组成格式(时间戳、超级表等),或有字符串未作修饰符修饰,类似的还有:
TDengine ERROR (80000127): Invalid timestamp format
原因是末尾的时间戳和数据库的时间戳格式不一致,导致无法格式化
(二)TDengine ERROR (8000061b): Table schema is old
可供参考的issues:
https://github.com/taosdata/TDengine/issues/19254https://github.com/taosdata/TDengine/issues/19013
这个错误的意思是client端缓存的表schema和server端不一致了。在client端运行命令reset query cache 清理下client端的缓存再试试。
看GitHub的issues,有人通过升级版本解决了问题, 但是我当时的问题是并发写入速度太快,导致的并发问题。