Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Usage with tokio #6

Closed
PvdBerg1998 opened this issue Dec 28, 2019 · 10 comments
Closed

Usage with tokio #6

PvdBerg1998 opened this issue Dec 28, 2019 · 10 comments
Labels
help wanted Extra attention is needed low priority This issue exists to acknowledge a proposal but isn't being worked on question Further information is requested

Comments

@PvdBerg1998
Copy link

First off, the project looks awesome! I'm currently using mysql_async with tokio and not completely satisfied. I'd love to give this crate a try, but I saw you're using async_std. My question is: how much do you rely on it?

I would like to keep everything running on a single threadpool which I can control. I'm using other libraries bound to tokio, so I can't switch over. Would it be possible to decouple from async_std or perhaps provide some feature flags to support tokio aswell? Again, it depends on what functionality you're using it for.

@abonander
Copy link
Collaborator

We went with async-std because we wanted to use this lib in web apps built with Tide, which is now also on async-std.

It would probably be a pretty major refactor to support Tokio. We use async_std quite heavily. If they were Cargo features we would have to treat them as mutually exclusive which is an antipattern, and it would require spewing #[cfg(all(feature = "async-std", not(feature = "tokio")))] and vice versa all throughout the code, which is not an exciting prospect.

Tokio also doesn't have an MPMC + FIFO channel which Pool uses in its RAII implementation for connections (to release them back to the pool), but we could probably find a replacement for that.

We also want to use async_native_tls for supporting secured connections, the API of which is based on the I/O traits from futures, which async-std uses but Tokio doesn't.

@PvdBerg1998
Copy link
Author

I agree that it's not desirable to have a large amount of feature gated code. Perhaps we can list the specific features you require from async_std and see when any runtime independent alternatives become available. The split between tokio and async_std is unfortunate, I hope there will be some abstraction over runtimes soon.

@mehcode
Copy link
Member

mehcode commented Jan 7, 2020

Specifically we require the MPMC channels for our Pool implementation. See https://github.com/launchbadge/sqlx/blob/master/sqlx-core/src/pool/inner.rs#L26


Note that I believe we're okay with accepting a PR here but at the same time I know that I'm not going to spend any time on this due to a massive list of other things I'd like to see SQLx have that I find more interesting to work on.

For anyone interested though, I would expect two cargo feature flags, runtime-async-std and runtime-tokio with the former on-by-default ( for ease-of-use ). I would additionally expect an explicit compile error raised from the crate root if both features are on-by-default.


@abonander Not sure the right way to word a label for this issue. I added [wontfix] and [help wanted] for now.

@mehcode mehcode added help wanted Extra attention is needed wontfix This will not be worked on labels Jan 7, 2020
@jjpe
Copy link

jjpe commented Jan 9, 2020

@mehcode the mpmc issue is easily fixed by using crossbeam, it has mpmc channels that are stdlib API-compatible and have better performance than std::mpsc to boot.

@abonander
Copy link
Collaborator

We want specifically async MPMC channels; the one in Crossbeam is a blocking channel.

@abonander abonander added low priority This issue exists to acknowledge a proposal but isn't being worked on question Further information is requested and removed wontfix This will not be worked on labels Jan 9, 2020
@jjpe
Copy link

jjpe commented Jan 9, 2020

Ah. I'm not aware of any channels (MPSC or otherwise) that are built on top of async infrastructure.

@mehcode
Copy link
Member

mehcode commented Jan 15, 2020

This will be in 0.2.0

@mehcode mehcode closed this as completed Jan 15, 2020
@PvdBerg1998
Copy link
Author

Oh wow, cool! I'll check it out asap!

@kevlarr
Copy link

kevlarr commented Jan 18, 2020

Well that was pretty crazy turnaround, nice work!

@mehcode
Copy link
Member

mehcode commented Jan 18, 2020

tldr., after some internal refactoring (that was not done for this) it ended up being a simple change at the end so I just went and did it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
help wanted Extra attention is needed low priority This issue exists to acknowledge a proposal but isn't being worked on question Further information is requested
Projects
None yet
Development

No branches or pull requests

5 participants