Plume
Plume copied to clipboard
[WIP] [PoC] '&' -> '&mut'
This is a (incomplete) proof of concept of a possible workaround for Sync issues that appear in async code.
Roughly, the issue is this:
- Route handler futures must be
Send. This requirement comes from Rocket, and would be nontrivial and/or undesirable to change in Rocket. - Handlers have an
&PlumeRocketor an&Connectionheld across anawaitpoint - Therefore,
&PlumeRocket/&Connectionmust beSend &T: SendiffT: Sync, soPlumeRocket/Connectionmust beSyncPlumeRocketcontains aConnection, andConnectioncontains a dieselPgConnection, which is notSync.
The approach demonstrated here is to change every &PlumeRocket or &Connection to an &mut PlumeRocket or &mut Connection. &mut T is Send if T is Send, so the problem is eliminated:
- Route handler futures must be
Send. - Handlers have an
&mut PlumeRocketor an&mut Connectionheld across anawaitpoint - Therefore,
&mut PlumeRocket/&mut Connectionmust beSend &mut T: SendiffT: Send, soPlumeRocket/Connectionmust beSendPlumeRocketcontains aConnection, andConnectioncontains a dieselPgConnection, which isSend.
Downsides
- In theory
&PlumeRocketcould allow more work to be done in parallel, at least in the future. It does not look like that is currently the case, since every call to the database blocks anyway. - This change is pervasive - it reaches all the way to
FromIdandInbox. I know relatively little about the overall structure of this code, so this could be incorrect or inconvenient in ways I don't know about! - Many of the remaining errors are caused by or made worse by the
&->&mutchange. A different solution that keeps&in more places would be easier to work with overall. - This approach does not address the problem of making blocking database calls inside
asyncfns, which can cause issues ranging from degraded performance to deadlocks.
Alternatives
- Put a
Mutexaround theConnectionsomewhere. Uncontended mutexes (which this one should be) are not a huge performance concern, butMutexmay be at least as or more unwieldy than this solution throughout the code. - Replace or wrap
Connectionwith an API likeconn.run(|c| Post::load(&c)).await, whererunhandles the synchronization. This has similar tradeoffs to aMutex, is probably the most inconvenient option in terms of overall code changes, and is also a significant chunk of new code to write and debug. However, it has the advantage of being capable of fixing the blocking-in-async-fn problem.
I think the best way to handle sql connections would be to have worker threads that are basically dedicated to that, and have a mpsc channel through which requests can be send to them, alongside a one shot channel that allow to return a result.
This is basically how actors work (like in Erlang and derivative, or the Actix lib for Rust), it would allow to keep &, would properly handle blocking operation out of async context, and maybe allow to compile both Postgresql and Sqlite in the same binary (however this would also be a lot of work, not that much new code, but lots of moving things around)
I think the best way to handle sql connections would be to have worker threads that are basically dedicated to that
Yeah, I think that's more or less the direction I was going with "wrap Connection with an API like conn.run(|c| Post::load(&c)).await". I agree that it's a nicer overall solution, with the biggest drawback being:
however this would also be a lot of work, not that much new code, but lots of moving things around
I agree that it's a nicer overall solution, with the biggest drawback being:
however this would also be a lot of work, not that much new code, but lots of moving things around
:woman_shrugging:
we have come this far, we might as well do it right.