Github user tdas commented on a diff in the pull request:

    https://github.com/apache/spark/pull/1395#discussion_r15613724
  
    --- Diff: 
streaming/src/main/scala/org/apache/spark/streaming/api/java/JavaPairDStream.scala
 ---
    @@ -659,6 +659,52 @@ class JavaPairDStream[K, V](val dstream: DStream[(K, 
V)])(
       }
     
       /**
    +   * Return a new DStream by applying 'full outer join' between RDDs of 
`this` DStream and
    +   * `other` DStream. Hash partitioning is used to generate the RDDs with 
Spark's default
    +   * number of partitions.
    +   */
    +  def fullOuterJoin[W](other: JavaPairDStream[K, W])
    +      : JavaPairDStream[K, (Optional[V], Optional[W])] = {
    --- End diff --
    
    Aaargh. My visual estimation failed. :(


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to