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
Turns out we're spinning up a lot of unsupervised tokio tasks. These tasks need to run and keep running, but they can crash in very rare circumstances.
It would be more ergonomic to use an actor system for these long running background tasks.
Examples are:
Bookkeeping compaction
"Cleared" versions DB writes
Synchronization loop
Partially buffered changes procesing
... many more!
The text was updated successfully, but these errors were encountered:
Turns out we're spinning up a lot of unsupervised tokio tasks. These tasks need to run and keep running, but they can crash in very rare circumstances.
It would be more ergonomic to use an actor system for these long running background tasks.
Examples are:
The text was updated successfully, but these errors were encountered: