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
{{ message }}
This repository has been archived by the owner on May 25, 2023. It is now read-only.
this is the definition of KStreamS#merge which causes stackoverflow. I think the cause is that the inner KStream instance is getting wrapped implicitly with KStreamS and calling its merge recursively. I believe just changing the name of the function should fix that.
from a quick look, a few more functions there has the same issue.
The text was updated successfully, but these errors were encountered:
@debasishg Observing the same StackOverflowError when i do stream1.merge(stream2)
java.lang.StackOverflowError
at com.lightbend.kafka.scala.streams.KStreamS.merge(KStreamS.scala:168)
at com.lightbend.kafka.scala.streams.KStreamS.merge(KStreamS.scala:168)
at com.lightbend.kafka.scala.streams.KStreamS.merge(KStreamS.scala:168)
at com.lightbend.kafka.scala.streams.KStreamS.merge(KStreamS.scala:168)
at com.lightbend.kafka.scala.streams.KStreamS.merge(KStreamS.scala:168)
at com.lightbend.kafka.scala.streams.KStreamS.merge(KStreamS.scala:168)
at com.lightbend.kafka.scala.streams.KStreamS.merge(KStreamS.scala:168)
at com.lightbend.kafka.scala.streams.KStreamS.merge(KStreamS.scala:168)
at com.lightbend.kafka.scala.streams.KStreamS.merge(KStreamS.scala:168)
at com.lightbend.kafka.scala.streams.KStreamS.merge(KStreamS.scala:168)
def merge(stream: KStreamS[K, V]): KStreamS[K, V] = inner.merge(stream)
this is the definition of KStreamS#merge which causes stackoverflow. I think the cause is that the inner KStream instance is getting wrapped implicitly with KStreamS and calling its merge recursively. I believe just changing the name of the function should fix that.
from a quick look, a few more functions there has the same issue.
The text was updated successfully, but these errors were encountered: