-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement True Snapshot Isolation for LevelDB #4
Comments
Based on this comment #2 (comment) about |
Ok so it turns out we can get a snapshot of leveldb by doing This iterator then maintains a snapshot, and exposes the methods of:
The combination of the This is useful because you can potentially create multiple snapshots at the same time:
This allows you to potentially stream over This system should produce a repeatable-read system, since now we can ensure that we always read the same value within the same transaction. Remember that MySQL's default isolation level is repeatable read. But PostgreSQL's default isolation level is read-committed.
With this in mind, as our current transaction is read-committed level, and is not repeatable-read, if we want repeatable-read, it would be possible to use iterator to achieve this. There is one other issue, with our current transaction system, there's no way to iterate transactionally without creating the |
The types for level ecosystem hasn't really been updated with these new methods though. I think an order of priority can be like:
This would be a big release though, 4. would be a breaking change, requiring changes in PK and EFS. |
With the merging #10, we have decided this is not actually ever needed. Our transactions are going to be read-committed and if the user requires repeatable read, they just need to use some advisory locking. |
@CMCDragonkai commented on Sat Aug 14 2021
Is your feature request related to a problem? Please describe.
Proper MVCC transactions make use of a snapshot that represent the state of the database. As mutations (put & delete) build up, they apply to the snapshot. This makes it easier to build up a transaction by composing procedures/functions that mutate a transaction object. It means you get read-after-write consistency within the snapshot. Where you may have an operation that depends on the state of the database. Like let's say a counter increment. But if the prior mutation to the transaction already incremented the same counter, it would be incoherent for the subsequent mutation to plus 1 to the counter thinking the counter hasn't already been incremented.
Right now leveldb already supports snapshots natively. However it's not exposed via the JS wrapper. There are pre-existing issues.
If we could have snapshot isolated transactions, it would simplify some of our algorithms here for inodes especially since we have counter increment operations that result from linking and unlinking the inodes.
Describe the solution you'd like
Have a snapshot ability for the leveldb that we can expose through our
DB
abstraction. Similar to the python library of leveldb: https://plyvel.readthedocs.io/en/latest/api.html#snapshotNote that a snapshot by itself is not sufficient to provide snapshot-isolated transactions. A combination of a "mutating" snapshot and the batching object which can overlay changes on top of the leveldb database can produce snapshot-isolated transactions.
This would mean an API like:
In fact I suspect it would be possible to just extend the
Batch
object to have this.Additional context
@CMCDragonkai commented on Sat Aug 14 2021
We often have dual operations one that is
doX
anddoXOps
.The reason is that currently
doXOps
can be composed to batch up an atomic commit.However with this transaction concept, it may be possible to do
doX(t)
where you pass a transaction in.This should mean if you pass a transaction, it applies the operations against the transaction.
If you don't it creates its own transaction and commits to the database.
You may need to use try catch above.
This would again cut down on the number of code we have and simplify it quite a bit.
@CMCDragonkai commented on Sat Aug 14 2021
So you'd need to:
Batch
classThe first one is the toughest to eventually merge into leveldown. It would be a fork of leveldown supporting this feature, and we would have to create our own "forked" bundle that bundles the forked leveldown supporting snapshots.
@CMCDragonkai commented on Sat Aug 14 2021
A proper MVCC system would also include lock management centralised at the DB class which would then coordinate multiple transactions together. This would be similar to how we are currently using async-mutex to synchronise operations. You then have concurrency control introduced.
It would generalise the entire special casing of async mutexes that we are dealing with right now.
@CMCDragonkai commented on Wed Aug 18 2021
In the process of solving #47 we have created our own makeshift transaction/snapshot system. It operates with read-committed isolation level.
The
Transaction
object doesn't maintain locks by itself, and it doesn't check locking for keys. But instead relies on the user to specify the relevant locks in thedb.transaction
method. So it's an "advisory transaction with read-committed snapshot isolation". I'm probably mixing up concepts to create a syncretic practical solution for our current situation.However as a further extension, it may be possible to also incorporate:
To create an in-memory snapshot.
@CMCDragonkai commented on Tue Oct 12 2021
This issue is more relevant to js-db now instead of EFS. EFS makes use of DB transactions.
The text was updated successfully, but these errors were encountered: