Is there a KSQL way to merge i.e. concatenate multiple streams into one? For example, is there a KSQL way to achieve the same result as this tutorial?
Yes, you can INSERT ... SELECT ...
to merge in ksqlDB - check out this tutorial.
ah! I was hoping for a UNION ALL
kind of operator.
Thanks.
There’s been talk of supporting UNION ALL
(more than talk) but it hasn’t happened as of yet.
1 Like
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.