Replies: 1 comment 3 replies
-
CC @jponge Do you have a reproducer we can look at? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
After we had high memory usage, we found some places where we used Multi.flatMap and Uni.join().all(), without limiting the currency.
We changed them to limit the currency, but after that we got stackoverflows from inside mutiny. I could not really understand why and how that's happened.
The problematic code has a multi and calls a method where we use an uni.join.all to call some web requests.
The Multi merge was limited to 3 while the uni was limited to 2. We used quarkus 3.15.1.
Beta Was this translation helpful? Give feedback.
All reactions