Status Update
Comments
ub...@gmail.com <ub...@gmail.com> #2
Is there any updates? This is a big problem!
ub...@gmail.com <ub...@gmail.com> #3
Hi there - could you provide more context on the issue & a sample project to reproduce? Database locked exceptions are quite difficult to pinpoint without a repro project. Thanks!
ub...@gmail.com <ub...@gmail.com> #4
Hi. It is reproduceable on some users by using this code:
suspend fun <R> MyDatabase.workaroundWithTransaction(block: suspend TransactionScope<R>.() -> R) {
useWriterConnection {
it.immediateTransaction(block)
}
// TODO: Temporally fix https://issuetracker.google.com/issues/340606803#comment2
// Manually triggers invalidation
invalidationTracker.refreshAsync()
}
ub...@gmail.com <ub...@gmail.com> #6
Hi. Please merge the pull request. This is big problem!
ub...@gmail.com <ub...@gmail.com> #7
Hi. Is there any updates on this problem?
da...@google.com <da...@google.com> #8
Hi, I updated my version to alpha12 but still have these crashes. Please release a fix asap.
ub...@gmail.com <ub...@gmail.com> #9
Will there be fixes released this Wednesday?
yb...@google.com <yb...@google.com> #10
Hey, there is no release on Wednesday (holiday in the USA)
We haven't found the root cause of this exception, it happens when SQLite can't commit the transaction because some other connection has a lock, we need more information, a sample project that reproduces the issue preferably, or more details on how the database is being used (is it from multiple process? is there heavy concurrency?).
You can also increase the time SQLite will wait before it error with 'database locked' by executing PRAGMA busy_timeout = <time in ms>
, the current default is 3000
ub...@gmail.com <ub...@gmail.com> #11
Thank you for you response.
- Isn't these pull request addressed this issue?
1.1
https://android-review.googlesource.com/c/platform/frameworks/support/+/3408679 1.2https://android-review.googlesource.com/c/platform/frameworks/support/+/3114928 - According to RoomDB documentation about
withTransaction
: "Room will only perform at most one transaction at a time, additional transactions are queued and executed on a first come, first serve order." So the transaction should just wait for other transaction to complete and not throw exception instead. Isn't it?
yb...@google.com <yb...@google.com> #12
I tried to use this code and still getting the same error from users. (deferredTransaction
instead of immediateTransaction
)
private val dbMutex = Mutex()
suspend fun <R> MyDatabse.workaroundWithTransaction(block: suspend TransactionScope<R>.() -> R) {
dbMutex.withLock {
useWriterConnection {
it.deferredTransaction(block)
}
// TODO: Fix https://issuetracker.google.com/issues/340606803#comment2
// Manually triggers invalidation
invalidationTracker.refreshAsync()
}
}
ub...@gmail.com <ub...@gmail.com> #13
Moreover now I am also think that @Update
function caused particularly this crash. I will monitor the situation to this if this 1 crash or it will be more with the same reason.
da...@google.com <da...@google.com> #14
After checking I can confirm that this crash happens as many as before.
yb...@google.com <yb...@google.com> #15
The crash occurs when the user adds a new record to the database from the interface, and the crash occurs when the application starts in the first 1-2 seconds. The crash also occurs when receiving records from the database.
This is just a disaster, please fix it.
el...@google.com <el...@google.com>
ub...@gmail.com <ub...@gmail.com> #16
Sorry, I don't believe those two pull request address the issue you are seeing.
If you can reliably reproduce can you please send us a sample project?
Besides adding a Mutex
did you also try increasing the busy timeout with the PRAGMA? Can you please share more details how the database is being used? Are you starting a transaction and performing many @Update
? Is the coroutine where the transaction occurring getting canceled and restarted? The theory here is maybe cancelation is not recycling the connection correctly and there is a lingering transaction that prevents other ones from finishing.
Can you also try and configure Room with the AndroidSQLiteDriver()
? This would help us know if the issue is specific to the BundledSQLiteDriver
or not.
I have yet to reproduce to issue, I've tried creating 'stress tests' like the following:
@Test
fun daoUsagesInTransaction() = runTest {
List(100) {
launch(Dispatchers.IO) {
db.useWriterConnection { transactor ->
transactor.immediateTransaction {
val e = SampleEntity(1)
db.dao().insert(e)
db.dao().update(e)
db.dao().delete(e)
}
}
db.invalidationTracker.refreshAsync()
}
}.joinAll()
}
ub...@gmail.com <ub...@gmail.com> #17
Hi. Thank you for your response.
- My app have BroadcastReceivers and WorkManagers that reads and writes in the same database that the app does. Could it be the problem? But! The logic didn't change since I moved from android only to shared module. On android it was working just fine.
- Currently I didn't succeed in reproducing it by myself.
- Have I tried to reproduce it by stress tests? Yes, but I haven't get the crash.
- "did you also try increasing the busy timeout with the PRAGMA?" - No, I didn't. I thought that it may be command just for my local device for testing. I google it see that I could execute it in query format when setting up Room. But I don't have so match long data read of write. I and thinking about it now.
- "Can you please share more details how the database is being used?" - As example of my app: task tracking app. The user enters tasks via UI, tasks sync with other user device, task can show local alerts notification to remind.
- "Are you starting a transaction and performing many @Update?" - It could do non-users operations when:
- Starts the app the notes are being sent or received (the App scope).
- Starts the app the other data updated via WorkManager (the WorkManager scope).
- Receives alert notification and BroadcastReceivers plans new notification and updates info about it in database (BroadcastReceiver scope).
- "The theory here is maybe cancelation is not recycling the connection correctly and there is a lingering transaction that prevents other ones from finishing." - I am now trying to ger rid of WorkManagers because I heard that they may start in another process then the app. I will see if it would help.
- "Can you also try and configure Room with the AndroidSQLiteDriver()?" - I tried to implement it but I don't understand how. My database placed in common module. The RoomDB generates implementation for each platform. How could I make my android implementation so I could use
AndroidSQLiteDriver()
?
yb...@google.com <yb...@google.com> #18
1 & 6 - WorkManager workers and broadcast receiver interacting with the same Room database is fine. I was more curious on the operations being done, but it does seem to be write operations in transactions.
4 - You can configure the timeout in Room's onOpen
addCallback()
onOpen
just do: conenction.execSQL("PRAGMA busy_timeout = <time in ms>")
7 - You should check your AndroidManifest.xml
, WorkManager could run in another process, but only if configured to do so, check if your app has multiple processes by checking the manifest and looking for android:process=
8 - Because AndroidSQLiteDriver
is an Android only API you need to create an actual / expect function that return a SQLiteDriver
along with the necessary Kotlin multiplatform source set configuration so that for Android it'll return AndroidSQLiteDriver
while for other platforms I'll return BundledSQLiteDriver
and you pipe that to `setDriver().
ub...@gmail.com <ub...@gmail.com> #19
Hi. I have updated my app replaced BundledSQLiteDriver
with AndroidSQLiteDriver
as you suggested.
For now I don't see SQLException: Error code: 5, message: database is locked
anymore but I see the new error java.lang.IllegalStateException: Cannot perform this operation because there is no current transaction.
Here is the stack trace.
Fatal Exception: java.lang.IllegalStateException: Cannot perform this operation because there is no current transaction.
at android.database.sqlite.SQLiteSession.throwIfNoTransaction(SQLiteSession.java:917)
at android.database.sqlite.SQLiteSession.endTransaction(SQLiteSession.java:400)
at android.database.sqlite.SQLiteDatabase.endTransaction(SQLiteDatabase.java:588)
at androidx.room.coroutines.AndroidSQLiteDriverPooledConnection.transaction(AndroidSQLiteDriverConnectionPool.android.kt:94)
at androidx.room.coroutines.AndroidSQLiteDriverPooledConnection.access$transaction(AndroidSQLiteDriverPooledConnection.java:53)
at androidx.room.coroutines.AndroidSQLiteDriverPooledConnection$transaction$1.invokeSuspend(AndroidSQLiteDriverConnectionPool.android.kt:12)
at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:33)
at kotlinx.coroutines.DispatchedTask.run(DispatchedTask.kt:98)
at kotlinx.coroutines.internal.LimitedDispatcher$Worker.run(LimitedDispatcher.java:113)
at kotlinx.coroutines.scheduling.TaskImpl.run(Tasks.kt:89)
at kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(CoroutineScheduler.java:586)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(CoroutineScheduler.kt:820)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker(CoroutineScheduler.kt:717)
at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run(CoroutineScheduler.kt:704)
el...@google.com <el...@google.com>
ap...@google.com <ap...@google.com> #20
Hi. Happy New Year!
After week with AndroidSQLiteDriver
I see no SQLException: Error code: 5, message: database is locked
but see java.lang.IllegalStateException: Cannot perform this operation because there is no current transaction.
.
So I think your theory may be right that this is something with "Coroutines and RoomDB".
Description
Component used: Room InvalidationTracker
Version used: 2.2.5
Devices/Android versions reproduced on: Android Studio emulator with Android R DP 2.1
Sample project:https://github.com/bubenheimer/invalidationtrackerbug
I am seeing consistency problems with the updates from InvalidationTracker when using JournalMode.TRUNCATE.
In my production app some updates are skipped - the observer is never called for a percentage of updates to a rarely updated table, causing the associated app screen to not get updated to the current state. I debugged into it and believe that this is associated with a lack of transactionality in InvalidationTracker.mRefreshRunnable. JournalMode.WRITE_AHEAD_LOGGING uses a transaction here, while JournalMode.TRUNCATE does not. Reads and writes of the table update log are disassociated, leaving the door open to overwriting recent changes to the log.
In the provided sample project I see the opposite effect, however: a lot of extra updates are triggered by InvalidationTracker with JournalMode.TRUNCATE. I am not sure what the underlying mechanism is for this behavior.
Exact effects are timing-related. The bottom line is that InvalidationTracker looks essentially broken for JournalMode.TRUNCATE. On the other hand I do not see significant issues with JournalMode.WRITE_AHEAD_LOGGING.