▲ | NewsaHackO 4 days ago | ||||||||||||||||||||||
>So when you start the app again, SQLite sees said rollback journal, and - since it would be considered "hot" - applies it, effectively reverting the transaction that was supposedly already committed. Guys. The journal would not be a hot journal though, as the hot journal selection only applies if the database is in a inconsistent state. Otherwise, the database knows from the ID of the journal not to reapply an already applied rollback journal. The process you are talking about ONLY happens when the journal database has been corrupted state, and it has to try and file a file to help recover the database. | |||||||||||||||||||||||
▲ | agwa 4 days ago | parent | next [-] | ||||||||||||||||||||||
OK, I just tested it: In terminal 1, I created a database and added a table to it:
In terminal 2, I attached gdb to sqlite3 and set a breakpoint on unlink:
Back in terminal 1, I inserted data into the table:
In terminal 3, I saved a copy of testdb-journal:
Then in terminal 2, I resumed executing sqlite3:
In terminal 1, the INSERT completed without error.Back in terminal 3, I sent SIGKILL to sqlite3, simulating a power failure:
I then restored testdb-journal, simulating what could happen after a power failure when the parent directory is not fsynced:
I then opened testdb again and ran `SELECT * FROM test` and it returned zero rows.This proves int_19h and I are right - if the journal file comes back, SQLite will apply it and roll back a committed transaction. I then confirmed with strace that, as the documentation says, the directory is only fsynced after unlink when synchronous=EXTRA. It doesn't happen with synchronous=FULL. So you need synchronous=EXTRA to get durability in DELETE mode. | |||||||||||||||||||||||
▲ | agwa 4 days ago | parent | prev | next [-] | ||||||||||||||||||||||
The docs list 5 conditions that all must be satisfied for the journal to be considered hot: https://www.sqlite.org/atomiccommit.html#_hot_rollback_journ... I believe they would all be satisfied. I don't see any mention of checking IDs. Not saying you're wrong - I think the docs could very well be wrong - but could you provide a citation for that behavior? | |||||||||||||||||||||||
| |||||||||||||||||||||||
▲ | int_19h 4 days ago | parent | prev [-] | ||||||||||||||||||||||
> Otherwise, the database knows from the ID of the journal not to reapply an already applied rollback journal. But it's not "already applied", that's the whole point. The transaction was committed, not rolled back, so the changes in transaction were persisted to disk and the journal was just thrown away. If it magically reappears again, how is SQLite supposed to know that it needs to be discarded again rather than applied to revert the change? |