aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorakkomar <ak.komar@gmail.com>2014-06-13 15:37:26 -0700
committerReynold Xin <rxin@apache.org>2014-06-13 15:37:26 -0700
commitedb1f0e3164b99b483b6878efe0b6ea5ae9f97ed (patch)
tree0fa0de3bc5ca915af6b45797b735cec84dca88ba /docs
parentac96d9657c9a9f89a455a1b671c059d896012d41 (diff)
downloadspark-edb1f0e3164b99b483b6878efe0b6ea5ae9f97ed.tar.gz
spark-edb1f0e3164b99b483b6878efe0b6ea5ae9f97ed.tar.bz2
spark-edb1f0e3164b99b483b6878efe0b6ea5ae9f97ed.zip
Small correction in Streaming Programming Guide doc
Corrected description of `repartition` function under 'Level of Parallelism in Data Receiving'. Author: akkomar <ak.komar@gmail.com> Closes #1079 from akkomar/streaming-guide-doc and squashes the following commits: 32dfc62 [akkomar] Corrected description of `repartition` function under 'Level of Parallelism in Data Receiving'.
Diffstat (limited to 'docs')
-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 bbee67f54c..ce8e58d64a 100644
--- a/docs/streaming-programming-guide.md
+++ b/docs/streaming-programming-guide.md
@@ -950,7 +950,7 @@ is 200 milliseconds.
An alternative to receiving data with multiple input streams / receivers is to explicitly repartition
the input data stream (using `inputStream.repartition(<number of partitions>)`).
-This distributes the received batches of data across all the machines in the cluster
+This distributes the received batches of data across specified number of machines in the cluster
before further processing.
### Level of Parallelism in Data Processing