From 6add48717cefd6cd5d259c6784a39b58e9b38680 Mon Sep 17 00:00:00 2001 From: Rahul J Date: Wed, 15 Jul 2015 11:37:31 +0530 Subject: [PATCH] Added closing quotes(") in the documentation --- .../Understanding-the-parallelism-of-a-Storm-topology.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/documentation/Understanding-the-parallelism-of-a-Storm-topology.md b/docs/documentation/Understanding-the-parallelism-of-a-Storm-topology.md index efa6a9b9192..6bda6610746 100644 --- a/docs/documentation/Understanding-the-parallelism-of-a-Storm-topology.md +++ b/docs/documentation/Understanding-the-parallelism-of-a-Storm-topology.md @@ -56,7 +56,7 @@ Here is an example code snippet to show these settings in practice: ```java topologyBuilder.setBolt("green-bolt", new GreenBolt(), 2) .setNumTasks(4) - .shuffleGrouping("blue-spout); + .shuffleGrouping("blue-spout"); ``` In the above code we configured Storm to run the bolt ``GreenBolt`` with an initial number of two executors and four associated tasks. Storm will run two tasks per executor (thread). If you do not explicitly configure the number of tasks, Storm will run by default one task per executor.