You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The key cause by load snapshot failure is that nonclude bytes involved preAlterColumn in these old snapshot data. Due to all data involved tableNode are stored consecutively in the snapshot file. The content of each element during serialization is of variable length, making it impossible to identify the information of preAlteredColumn. So increment a identify to find the position that can read preAlterColumn. (#17004)
Copy file name to clipboardExpand all lines: iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/persistence/schema/ConfigMTree.java
+25-12Lines changed: 25 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -107,6 +107,8 @@ public class ConfigMTree {
107
107
privatestaticfinalStringTABLE_ERROR_MSG =
108
108
"Failed to recover configNode, because there exists data from an older incompatible version, will shutdown soon. Please delete all data, and then restart again.";
0 commit comments