英文:
How to complete data migration without "invalid method name" error from Apache IoTDB Version 0.13.2 to Version 1.0.0?
问题
我想将数据从Apache IoTDB版本0.13.2迁移到版本1.0.0。我查看了官方用户指南并使用DataMigrationExample来实现数据复制,但执行失败。报告的错误是"Invalid method name: executeQueryStatementV2"。我还查看了"load tsfile"方法来进行数据迁移,但因为我的时间序列路径名称中有特殊字符"-",所以我也无法使用"load tsfile"。是否有人可以建议我如何成功完成我的数据迁移过程?
英文:
I want to migrate data from Apache IoTDB Version 0.13.2 to Version 1.0.0. I checked the official user guide and use the DataMigrationExample to implement data replication, but the execution fails. The error reported "Invalid method name: executeQueryStatementV2". I also checked the "load tsfile" method to do data migration, but because there is a special character "-" in the path name of my time series, I also fail to use "load tsfile". Can anyone suggest how can I successfully complete my data migration process?
答案1
得分: 0
Currently, Apache IoTDB无法使用Version 1.0的会话连接到Version 0.13以迁移数据,但Version 0.13的会话可以用于连接到Version 1.0。您可以尝试使用Version 0.13用户指南中的DataMigrationExample再次尝试。
英文:
Currently, Apache IoTDB cannot use the session of Version 1.0 to connect to Version 0.13 to migrate data, however session of Version 0.13 can be used to connect to version 1.0. You can try to use the DataMigrationExample of Version 0.13 in user guide to try again.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论