Thank you Jialin. I didnt realise the data was not migrated as part of the upgrade.
That is good to see there is a resource to migrate. I will use that approach. Thanks Trevor Hart ---- On Tue, 28 May 2024 13:35:41 +1200 Jialin Qiao <[email protected]> wrote --- Hi, The architecture of 1.x is different from 0.13. The upgrading can not be in situ. You need to deploy an 1.3 instance, then transfer the data. There are two ways to transfer data: 1. Using Session to query from the 0.13, then write into 1.3. 2. Using TsFile API to rewrite the TsFile, then load TsFiles to 1.3. 1. is easier. You could refer to this: https://github.com/apache/iotdb/blob/master/example/session/src/main/java/org/apache/iotdb/DataMigrationExample.java Jialin Qiao
