zerolbsony commented on code in PR #17279:
URL: https://github.com/apache/iotdb/pull/17279#discussion_r2944135473
##########
iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/manager/ProcedureManager.java:
##########
@@ -1374,6 +1375,16 @@ public TSStatus createRegionGroups(
}
}
+ /** Used to repair the lost data partition table */
+ public TSStatus dataPartitionTableIntegrityCheck() {
+ DataPartitionTableIntegrityCheckProcedure procedure;
+ synchronized (this) {
+ procedure = new DataPartitionTableIntegrityCheckProcedure();
+ executor.submitProcedure(procedure);
+ }
+ return waitingProcedureFinished(procedure);
Review Comment:
Unnecessarily, ignore
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]