mirror of https://github.com/TriliumNext/Notes
implemented consistency checks
parent
581f406a24
commit
d1329de760
@ -0,0 +1,5 @@
|
||||
DROP index IDX_notes_tree_note_tree_id;
|
||||
|
||||
CREATE INDEX `IDX_notes_tree_note_id` ON `notes_tree` (
|
||||
`note_id`
|
||||
);
|
||||
@ -0,0 +1,55 @@
|
||||
"use strict";
|
||||
|
||||
const sql = require('./sql');
|
||||
const log = require('./log');
|
||||
|
||||
async function runCheck(query, errorText, errorList) {
|
||||
const result = await sql.getFlattenedResults(query);
|
||||
|
||||
if (result.length > 0) {
|
||||
const err = errorText + ": " + result;
|
||||
errorList.push(err);
|
||||
|
||||
log.error(err);
|
||||
}
|
||||
}
|
||||
|
||||
async function runMissingSyncRowCheck(table, key, errorList) {
|
||||
await runCheck("SELECT " + key + " FROM " + table + " LEFT JOIN sync ON sync.entity_name = '" + table + "' AND entity_id = " + key + " WHERE sync.id IS NULL",
|
||||
"Missing sync records for " + key + " in table " + table, errorList);
|
||||
}
|
||||
|
||||
async function runChecks() {
|
||||
const errorList = [];
|
||||
|
||||
await runCheck("SELECT note_id FROM notes LEFT JOIN notes_tree USING(note_id) WHERE notes_tree.note_tree_id IS NULL",
|
||||
"Missing notes_tree records for following note IDs", errorList);
|
||||
|
||||
await runCheck("SELECT note_tree_id FROM notes_tree LEFT JOIN notes USING(note_id) WHERE notes.note_id IS NULL",
|
||||
"Missing notes records for following note tree IDs", errorList);
|
||||
|
||||
await runCheck("SELECT note_tree_id FROM notes_tree JOIN notes USING(note_id) WHERE notes.is_deleted = 1 AND notes_tree.is_deleted = 0",
|
||||
"Note tree is not deleted even though main note is deleted for following note tree IDs", errorList);
|
||||
|
||||
await runCheck("SELECT child.note_pid || ' > ' || child.note_id FROM notes_tree AS child LEFT JOIN notes_tree AS parent ON parent.note_id = child.note_pid WHERE parent.note_id IS NULL AND child.note_pid != 'root'",
|
||||
"Not existing parent in the following parent > child relations", errorList);
|
||||
|
||||
await runCheck("SELECT note_history_id || ' > ' || notes_history.note_id FROM notes_history LEFT JOIN notes USING(note_id) WHERE notes.note_id IS NULL",
|
||||
"Missing notes records for following note history ID > note ID", errorList);
|
||||
|
||||
await runMissingSyncRowCheck("notes", "note_id", errorList);
|
||||
await runMissingSyncRowCheck("notes_history", "note_history_id", errorList);
|
||||
await runMissingSyncRowCheck("notes_tree", "note_tree_id", errorList);
|
||||
await runMissingSyncRowCheck("recent_notes", "note_tree_id", errorList);
|
||||
}
|
||||
|
||||
sql.dbReady.then(() => {
|
||||
setInterval(runChecks, 60 * 60 * 1000);
|
||||
|
||||
// kickoff backup immediately
|
||||
setTimeout(runChecks, 5000);
|
||||
});
|
||||
|
||||
module.exports = {
|
||||
runChecks
|
||||
};
|
||||
Loading…
Reference in New Issue