fix(powersync): use read lock for BucketStorage.select()#432
Open
rumitvn wants to merge 1 commit into
Open
Conversation
BucketStorage.select() is documented for read statements only, but called _internalDb.execute(), which acquires a write lock. All callers run SELECTs, so route them through getAll() to take a read lock instead. This avoids serializing read-only queries behind the write lock (e.g. on web with SqliteConnectionPool). Closes powersync-ja#384
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Closes #384
Problem
BucketStorage.select()is documented "Use only for read statements", but it calls_internalDb.execute(), which acquires a write lock. Every caller (getClientId,updateLocalTarget,hasCrud,getCrudBatch, …) runs read-onlySELECTs, so taking a write lock needlessly serializes these reads behind the write lock — notably on web /SqliteConnectionPool, where reads and writes can otherwise run concurrently.@simolus3 confirmed in the issue that this is a bug.
Fix
Route
select()throughgetAll(), which acquires a read lock, matching the method's documented read-only contract. All existing callers are plainSELECTs, so behaviour is unchanged apart from the correct lock type.Notes
## 2.3.1 (unreleased)).