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 2015/11/23 22:08:00 UTC

[21/37] storm git commit: Minor tweaks to documentation.

Minor tweaks to documentation.


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

Branch: refs/heads/master
Commit: d7b832a44f03ec5e868bc83275fe9eef27e806ed
Parents: c93a0ff
Author: Kyle Nusbaum <Ky...@gmail.com>
Authored: Tue Nov 17 15:23:08 2015 -0600
Committer: Kyle Nusbaum <Ky...@gmail.com>
Committed: Tue Nov 17 15:23:08 2015 -0600

----------------------------------------------------------------------
 docs/documentation/Pacemaker.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/d7b832a4/docs/documentation/Pacemaker.md
----------------------------------------------------------------------
diff --git a/docs/documentation/Pacemaker.md b/docs/documentation/Pacemaker.md
index cd7a0a6..8acbb36 100644
--- a/docs/documentation/Pacemaker.md
+++ b/docs/documentation/Pacemaker.md
@@ -1,5 +1,4 @@
 # Pacemaker
-------
 
 ### Intro
 Pacemaker is a storm daemon designed to process heartbeats from workers. As Storm is scaled up, ZooKeeper begins to become a bottleneck due to high volumes of writes from workers doing heartbeats. Lots of writes to disk and traffic across the network is generated as ZooKeeper tries to maintain consistency.
@@ -8,6 +7,7 @@ Because heartbeats are of an ephemeral nature, they do not need to be persisted
 
 The corresponding Pacemaker client is a plugin for the `ClusterState` interface, `org.apache.storm.pacemaker.pacemaker_state_factory`. Heartbeat calls are funneled by the `ClusterState` produced by `pacemaker_state_factory` into the Pacemaker daemon, while other set/get operations are forwarded to ZooKeeper.
 
+------
 
 ### Configuration