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
Expected Stream after inner-join (with addition as result) between Stream1 and Stream2: Seq(("key1", 4), ("key2", 3), ("key2", 4)) but I get the actual output as Seq(("key1", 4), ("key2", 3))
The text was updated successfully, but these errors were encountered:
anuragde
changed the title
duplicate keys in a stream are not ignored
duplicate keys in a stream are ignored
May 28, 2019
I have two streams for inner join:
Stream1 : Seq(("key1", 1), ("key3", 1), ("key2", 2))
Stream2: Seq(("key1", 3), ("key2", 1), ("key2", 2))
Expected Stream after inner-join (with addition as result) between Stream1 and Stream2: Seq(("key1", 4), ("key2", 3), ("key2", 4)) but I get the actual output as Seq(("key1", 4), ("key2", 3))
The text was updated successfully, but these errors were encountered: