Repository: spark Updated Branches: refs/heads/master ac96d9657 -> edb1f0e31
Small correction in Streaming Programming Guide doc Corrected description of `repartition` function under 'Level of Parallelism in Data Receiving'. Author: akkomar <[email protected]> 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'. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/edb1f0e3 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/edb1f0e3 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/edb1f0e3 Branch: refs/heads/master Commit: edb1f0e3164b99b483b6878efe0b6ea5ae9f97ed Parents: ac96d96 Author: akkomar <[email protected]> Authored: Fri Jun 13 15:37:26 2014 -0700 Committer: Reynold Xin <[email protected]> Committed: Fri Jun 13 15:37:26 2014 -0700 ---------------------------------------------------------------------- docs/streaming-programming-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/edb1f0e3/docs/streaming-programming-guide.md ---------------------------------------------------------------------- diff --git a/docs/streaming-programming-guide.md b/docs/streaming-programming-guide.md index bbee67f..ce8e58d 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
