Disable auto vacuum to speed up CloseImpl #3656
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
After calling the ApplyRigConfig function, the exe may experience long I/O cycles (90% utilization). Investigation revealed that the Database destructor was particularly time-consuming. Further investigation revealed that this was caused by setting auto_vacuum to 1. If auto_vacuum is 0, SQLite does not clean up deleted space when deleting data, allowing it to reuse the deleted space when adding data later.
The ApplyRigConfig function primarily deletes frames and rigs. However, frames and rigs occupy very little storage space, so clearing them would not yield significant benefits.
Changing from
SQLITE3_EXEC(database->database_, "PRAGMA auto_vacuum=1", nullptr);
to
SQLITE3_EXEC(database->database_, "PRAGMA auto_vacuum=0", nullptr);
reduces the time it takes to destroy the database, especially when the SQLite database size reaches 1-10GB.