apache / iotdb

Apache IoTDB
https://iotdb.apache.org/
Apache License 2.0
4.41k stars 987 forks source link

0.13升级1.0数据兼容问题 #9081

Open Warden-Thresh opened 1 year ago

Warden-Thresh commented 1 year ago

1.0版本中路径不允许为实数,如 root.xx.10000009,使用tsfile导入1.0时 抛异常 org.apache.iotdb.commons.exception.IllegalPathException: root.xx.10000009 is not a legal path,对于这种不兼容的数据有什么办法可以导入到1.0版本吗?

zhaozhihua2008 commented 1 year ago

同问?

BanDuWuZi commented 8 months ago

没啥好办法,得临时修改加载tsfile代码,对纯数字路径使用反引号转义:root.xx.10000009 -> root.xx.10000009 然后业务侧适配修改。。。。

duters-31506103 commented 3 months ago

没啥好办法,得临时修改加载tsfile代码,对纯数字路径使用反引号转义:root.xx.10000009 -> root.xx.10000009 然后业务侧适配修改。。。。 遇到了同样的问题,可以具体说下吗?修改加载tsFile的代码是去改加载tsFile的原代码?