Using Apache Hop integrated with Kafka #5961
-
|
I’d like to briefly explain the workflow I developed in Apache Hop and the issues I’m encountering. The flow works as follows: My goal is to enrich the message coming from Kafka with data from the database. So, after a Table Input, I perform a Merge (between the data coming from Kafka and the data coming from the database), and finally, I output the result to a text file. The problem I’ve encountered is that the flow stops at the Merge step. I’d like to know whether this issue has already been experienced by others, and if so, how it can be resolved or worked around. Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
|
Could you add a reproduction case please? This would help us investigate the issue. I am guessing you are talking about a merge join? I would expect that one to pass the rows after the "group" is finished. |
Beta Was this translation helpful? Give feedback.
-
|
I think you should prevent to use transform that wait for the end of the stream (like sort, merge, ...) in the same pipeline where the Kafka consumer transform is. Try to use a pipeline executor and put in the called pipeline the logic to manage the Kafka message. |
Beta Was this translation helpful? Give feedback.

I think you should prevent to use transform that wait for the end of the stream (like sort, merge, ...) in the same pipeline where the Kafka consumer transform is. Try to use a pipeline executor and put in the called pipeline the logic to manage the Kafka message.