5,053 instances of "NS_ENSURE_SUCCESS(rv, rv) failed with result 0x80630001 (NS_ERROR_STORAGE_BUSY)" emitted from storage/mozStorage(Connection|Service).cpp during linux64 debug testing
Categories
(Core :: SQLite and Embedded Database Bindings, defect, P3)
Tracking
()
People
(Reporter: erahm, Unassigned)
References
(Depends on 2 open bugs, Blocks 1 open bug)
Details
Attachments
(1 file)
Reporter | ||
Updated•7 years ago
|
Comment 2•7 years ago
|
||
Comment 3•7 years ago
|
||
Updated•7 years ago
|
Comment 4•6 years ago
|
||
7,500 instances of "NS_ENSURE_SUCCESS(rv, rv) failed with result 0x80630001" emitted from storage/mozStorage(Connection|Service).cpp during linux64 debug testing
Comment 5•6 years ago
|
||
Hi, I would like to work on this. Please check the submitted patch.
Comment 6•6 years ago
|
||
The fix here doesn't just consist into removing the warning, you should run one (or more) of the above test get a stack of where and why initializeInternal() is returning an error, probably one of the executeSql calls inside it return a native SQLITE error, it would be useful to know which one. It would also be useful to know what's the url passed to openDatabaseWithFileURL
At that point we should be able to evaluate whether this warning is correct and the consumers should be fixed, or wrong, and then we could mute it.
Reporter | ||
Comment 7•6 years ago
|
||
To inspect this locally you'll want to have a debug build, you can enable this by adding the following to your .mozconfig
build file:
ac_add_options --enable-debug
One of the tests where this reproduces is the wpt idbobjectstore-rename-store.html
test, you can run that locally with:
./mach test testing/web-platform/tests/IndexedDB/idbobjectstore-rename-store.html
Marco would like to know which line is returning a failure in initializeInternal
[1]. You can either inspect with a debugger or more simply just add a printf
indicating which line is returning. Additionally it would be useful to log error that comes back from sqlite. You'll also want to confirm that we still see this warning
Updated•6 years ago
|
Comment 8•6 years ago
|
||
Per https://www.oxymoronical.com/nsresult/:
Results for 0x80630001
NS_ERROR_STORAGE_BUSY
SQLite database connection is busy
This likely indicates that an IndexedDB test is attempting to open a database that's currently being checkpointed on another thread. I believe bug 1541550 most specifically covers this, but bug 1541548 could also be involved. Fixing those bugs is likely to be the best way to eliminate this spam.
In general, a connection being busy does indicate a scheduling/coordination problem, so the spam is arguably good, except for how long it's taken to address it. It could make sense to have some kind of open flag that indicates that a busy-wait is expected/possible and the specific error shouldn't be warned. When a bug is filed to fix the underlying issue (as has been done for IDB), the open requests related to that bug could then be marked as expecting the busy-wait to suppress the spam.
Context
The general issue is that there are potentially 3 threads involved in IDB database work:
- The PBackground thread where IndexedDB coordinates access to databases and decides what thread should handle an IDB requests.
- The QuotaManager I/O thread where IDB open requests are serviced. This thread will initially open a database to do a version check, and then subsequently close the database so it can be re-opened on the next thread. That's bug 1541548.
- The IDB connection thread where all of the database transactions are serviced. When the database is closed, write-ahead-log checkpointing may occur which does blocking IO. Bug 1541550 is about IDB doing a better job of tracking/coordinating this closure so QM I/O opens don't get run while this is still happening.
Updated•2 years ago
|
Updated•2 years ago
|
Updated•1 years ago
|
Comment 9•5 months ago
|
||
I think this is still happening:
5053 WARNING: NS_ENSURE_SUCCESS(rv, rv) failed with result 0x80630001 (NS_ERROR_STORAGE_BUSY): file storage/mozStorageConnection.cpp:1189
It is in the top 100 for warnings, but only around number 70.
Updated•2 months ago
|
Description
•