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
I've run into an issue with finite fs2-kafka streams and zipping. It seems that if I take more than 1000 elements from the default-configured streams and then zip them, the first stream's elements get recycled after the 1000th one starting with the 0th one. The example code snippet makes it clearer below.
This code fails on the assert with "k[]0" did not equal "k[100]0". I added some logging to see more clearly what is happening, and there it shows this:
Hello,
I've run into an issue with finite fs2-kafka streams and zipping. It seems that if I take more than 1000 elements from the default-configured streams and then zip them, the first stream's elements get recycled after the 1000th one starting with the 0th one. The example code snippet makes it clearer below.
Scala version: 2.12.18
fs2.kafka version: 3.1.0
This code fails on the assert with
"k[]0" did not equal "k[100]0"
. I added some logging to see more clearly what is happening, and there it shows this:Could you help me resolve this?
P.S.: this other issue might be related: #1292
The text was updated successfully, but these errors were encountered: