You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by kn...@apache.org on 2016/03/28 19:25:03 UTC

storm git commit: Fixing bullet-points for jekyll

Repository: storm
Updated Branches:
  refs/heads/master 6d4c6d54f -> 831c2cfbb


Fixing bullet-points for jekyll


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/831c2cfb
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/831c2cfb
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/831c2cfb

Branch: refs/heads/master
Commit: 831c2cfbb73b3a008dbebb5b29927299602bb6b9
Parents: 6d4c6d5
Author: Kyle Nusbaum <Ky...@gmail.com>
Authored: Mon Mar 28 12:25:03 2016 -0500
Committer: Kyle Nusbaum <Ky...@gmail.com>
Committed: Mon Mar 28 12:25:03 2016 -0500

----------------------------------------------------------------------
 docs/Trident-RAS-API.md | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/831c2cfb/docs/Trident-RAS-API.md
----------------------------------------------------------------------
diff --git a/docs/Trident-RAS-API.md b/docs/Trident-RAS-API.md
index 7d8a1be..969eab8 100644
--- a/docs/Trident-RAS-API.md
+++ b/docs/Trident-RAS-API.md
@@ -41,9 +41,11 @@ Operations that are combined by Trident into single Bolts will have their resour
 Every Bolt is given **at least** the default resources, regardless of user settings.
 
 In the above case, we end up with
- * a spout and spout coordinator with a CPU load of 20% each, and a memory load of 512MiB on-heap and 256MiB off-heap.
- * a bolt with 60% cpu load (10% + 50%) and a memory load of 1536MiB (1024 + 512) on-heap from the combined `Split` and `BangAdder`
- * a bolt with 100% cpu load and a memory load of 2048MiB on-heap, with default value for off-heap.
+
+
+- a spout and spout coordinator with a CPU load of 20% each, and a memory load of 512MiB on-heap and 256MiB off-heap.
+- a bolt with 60% cpu load (10% + 50%) and a memory load of 1536MiB (1024 + 512) on-heap from the combined `Split` and `BangAdder`
+- a bolt with 100% cpu load and a memory load of 2048MiB on-heap, with default value for off-heap.
 
 The API can be called as many times as is desired.
 It may be called after every operation, after some of the operations, or used in the same manner as `parallelismHint()` to set resources for a whole section.