From 78d15bd7e343c4d6d07dcf97df76a6a8e6e8fe61 Mon Sep 17 00:00:00 2001 From: Shixiong Zhu Date: Fri, 18 Dec 2015 15:31:00 -0800 Subject: [PATCH] Address --- docs/streaming-programming-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/streaming-programming-guide.md b/docs/streaming-programming-guide.md index 6c6a2231cef4c..68674d538754b 100644 --- a/docs/streaming-programming-guide.md +++ b/docs/streaming-programming-guide.md @@ -1417,7 +1417,7 @@ Note that the connections in the pool should be lazily created on demand and tim ## Accumulator and Broadcast -Accumulator and Broadcast cannot be recovered from checkpoint in Streaming. If you enable checkpoint and use Accumulator or Broadcast as well, you have to create lazily instantiated singleton instances for Accumulator and Broadcast so that they can be restarted on driver failures. This is shown in the following example. +Accumulator and Broadcast cannot be recovered from checkpoint in Spark Streaming. If you enable checkpointing and use Accumulator or Broadcast as well, you'll have to create lazily instantiated singleton instances for Accumulator and Broadcast so that they can be restarted on driver failures. This is shown in the following example.