You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When transaction which would put us above the quota is commited, QuotaExceededError is returned and transaction is rolled back. From this point on, Indexeddb is in read-only state until restart (note that this by itself doesn't change the quota, and db can lock up again, if quota is exceeded).
From the user perspective, node just stops syncing (as all the db inserts fail).
The text was updated successfully, but these errors were encountered:
Context
Browsers use quotas to limit the amount of data page can store locally, see mdn for details.
Available quota can be queried with StorageManager
Issue
When transaction which would put us above the quota is commited,
QuotaExceededError
is returned and transaction is rolled back. From this point on, Indexeddb is in read-only state until restart (note that this by itself doesn't change the quota, and db can lock up again, if quota is exceeded).From the user perspective, node just stops syncing (as all the db inserts fail).
The text was updated successfully, but these errors were encountered: