From 32dfc62a76662e3e8ff97960367a0c321d49eb61 Mon Sep 17 00:00:00 2001 From: akkomar Date: Fri, 13 Jun 2014 21:46:35 +0200 Subject: [PATCH] Corrected description of `repartition` function under 'Level of Parallelism in Data Receiving'. --- 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 bbee67f54c6b8..ce8e58d64a7ed 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()`). -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