aboutsummaryrefslogtreecommitdiff
path: root/docs/streaming-programming-guide.md
diff options
context:
space:
mode:
authorKeiji Yoshida <yoshida.keiji.84@gmail.com>2015-08-23 11:04:29 +0100
committerSean Owen <sowen@cloudera.com>2015-08-23 11:04:29 +0100
commit623c675fde7a3a39957a62c7af26a54f4b01f8ce (patch)
treef53d4872af3141dd775ff56e1b527670fa622529 /docs/streaming-programming-guide.md
parent90cb9f05655a25b95b8f9fe81da14e5b9c8bcf44 (diff)
downloadspark-623c675fde7a3a39957a62c7af26a54f4b01f8ce.tar.gz
spark-623c675fde7a3a39957a62c7af26a54f4b01f8ce.tar.bz2
spark-623c675fde7a3a39957a62c7af26a54f4b01f8ce.zip
Update streaming-programming-guide.md
Update `See the Scala example` to `See the Java example`. Author: Keiji Yoshida <yoshida.keiji.84@gmail.com> Closes #8376 from yosssi/patch-1.
Diffstat (limited to 'docs/streaming-programming-guide.md')
-rw-r--r--docs/streaming-programming-guide.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/streaming-programming-guide.md b/docs/streaming-programming-guide.md
index c59d936b43..118ced298f 100644
--- a/docs/streaming-programming-guide.md
+++ b/docs/streaming-programming-guide.md
@@ -1702,7 +1702,7 @@ context.awaitTermination();
If the `checkpointDirectory` exists, then the context will be recreated from the checkpoint data.
If the directory does not exist (i.e., running for the first time),
then the function `contextFactory` will be called to create a new
-context and set up the DStreams. See the Scala example
+context and set up the DStreams. See the Java example
[JavaRecoverableNetworkWordCount]({{site.SPARK_GITHUB_URL}}/tree/master/examples/src/main/java/org/apache/spark/examples/streaming/JavaRecoverableNetworkWordCount.java).
This example appends the word counts of network data into a file.