aboutsummaryrefslogtreecommitdiff
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:44 +0100
commit595f92fef5fedfeb1d630abb18962136267ae0fe (patch)
treebc1120ecad5dd8ebb6c1e3768468fa09284165e3
parent5f03b7ae5506f5b18cec48034ca68af5abaa2da0 (diff)
downloadspark-595f92fef5fedfeb1d630abb18962136267ae0fe.tar.gz
spark-595f92fef5fedfeb1d630abb18962136267ae0fe.tar.bz2
spark-595f92fef5fedfeb1d630abb18962136267ae0fe.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. (cherry picked from commit 623c675fde7a3a39957a62c7af26a54f4b01f8ce) Signed-off-by: Sean Owen <sowen@cloudera.com>
-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.