[ 
https://issues.apache.org/jira/browse/SPARK-9601?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14653918#comment-14653918
 ] 

Apache Spark commented on SPARK-9601:
-------------------------------------

User 'namitk' has created a pull request for this issue:
https://github.com/apache/spark/pull/7935

> Join example fix in streaming-programming-guide.md
> --------------------------------------------------
>
>                 Key: SPARK-9601
>                 URL: https://issues.apache.org/jira/browse/SPARK-9601
>             Project: Spark
>          Issue Type: Bug
>          Components: Documentation
>    Affects Versions: 1.4.1
>            Reporter: Jayant Shekhar
>            Priority: Trivial
>
> Stream-Stream Join has the following signature for Java in the guide:
> JavaPairDStream<String, String> joinedStream = stream1.join(stream2);
> It should be:
> JavaPairDStream<String, Tuple2<String, String>> joinedStream = 
> stream1.join(stream2);
> Same for windowed stream join. It should be:
> JavaPairDStream<String, Tuple2<String, String>> joinedStream = 
> windowedStream1.join(windowedStream2);



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to