val aDstream = ... val distinctStream = aDstream.transform(_.distinct())
but the elements in distinctStream are not distinct. Did I use it wrong?
val aDstream = ... val distinctStream = aDstream.transform(_.distinct())
but the elements in distinctStream are not distinct. Did I use it wrong?