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

zio-http should not pull in incubator uring transport #3425

Closed
russwyte opened this issue Mar 20, 2025 · 1 comment
Closed

zio-http should not pull in incubator uring transport #3425

russwyte opened this issue Mar 20, 2025 · 1 comment

Comments

@russwyte
Copy link
Contributor

russwyte commented Mar 20, 2025

My organization just experienced a pretty significant issue where a library (lettuce) which also uses netty - found netty-incubator-transport-native-io_uring on our classpath and used it because zio-http pulls it in as a dependency. We had recently introduced a zio-http based client library.

The uring driver exhibits behavior like this in some cases:
netty/netty-incubator-transport-io_uring#247

IMO netty-incubator-transport-native-io_uring should be a transport option - but it should require an explicit dependency by a project using zio-http. I think this should be documented instead of provided by default.

Lettuce redis client has (IMO) a pretty unexpected and dangerous way of choosing the uring transport just because it's on the classpath. We are opening an issue up there as well. See here:

https://github.com/redis/lettuce/blob/0ccdde3b4aaac847c5615070354d9e5a47377dc8/src/main/java/io/lettuce/core/resource/IOUringProvider.java#L49

Because a high traffic area of our app uses lettuce and it was choosing uring transport - as it was on the classpath - we experienced a lot of IO waiting that slowed down critical APIs which had a very adverse effect.

We added a specific exclusion in sbt to get that library out of the classpath - but I don't think that should be necessary.

excludeDependencies ++= Seq(
  "io.netty.incubator" % "netty-incubator-transport-native-io_uring",
 ...
)

Incubator libraries are experimental and as such should be strictly opt-in.

@987Nabil
Copy link
Contributor

@russwyte I think you are right. Especially in the light of auto select the transport mode. I would not be surprised if other netty based lives would do the same

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants