I know, join between two streams is not supported yet. But there's a way to do it anyway? Or I need to wait for Spark 2.2.0? Thank you
Asked
Active
Viewed 6,685 times
5
-
Did you find a way to do this with structured streaming? – fledgling Dec 01 '17 at 20:41
3 Answers
4
Spark 2.2.0 still won't support stream-stream join. You can watch this ticket: https://issues.apache.org/jira/browse/SPARK-18791

zsxwing
- 20,270
- 4
- 37
- 59
-
-
1
-
Hi! I was just playing with spark 2.3 RC4 stream-stream join. Somehow I couldn't do a self join on streaming dataframe easily. and I am not sure why..It might be my syntax but I am not sure..more details here https://stackoverflow.com/questions/48900127/how-to-do-a-self-join-in-spark-2-3-0-what-is-the-correct-syntax would be great if you can help on this one!! – user1870400 Feb 21 '18 at 08:07
1
As of production release of Spark 2.3, stream-stream joins are now supported in structured streaming.

rhoeting
- 396
- 4
- 10
-2
I recommend you using Kafka Streams rather than Structured Spark Streaming if you want to join streams.. check this link to see how this can be done

Gilles Essoki
- 517
- 6
- 15
-
Thank you, but I've already used Kafka Streams. I want to try some different streaming engines for specific reason :D – Aniello Guarino May 19 '17 at 12:48