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:02 UTC

[23/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/099dc72e
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/099dc72e
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/099dc72e

Branch: refs/heads/master
Commit: 099dc72e6fb20369379fd4f5d715f862fa267f71
Parents: 921db43
Author: Kyle Nusbaum <Ky...@gmail.com>
Authored: Tue Nov 17 15:24:36 2015 -0600
Committer: Kyle Nusbaum <Ky...@gmail.com>
Committed: Tue Nov 17 15:24:36 2015 -0600

----------------------------------------------------------------------
 docs/documentation/Pacemaker.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/099dc72e/docs/documentation/Pacemaker.md
----------------------------------------------------------------------
diff --git a/docs/documentation/Pacemaker.md b/docs/documentation/Pacemaker.md
index 5084737..8acbb36 100644
--- a/docs/documentation/Pacemaker.md
+++ b/docs/documentation/Pacemaker.md
@@ -1,6 +1,6 @@
 # Pacemaker
 
-## Intro
+### 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.
 
 Because heartbeats are of an ephemeral nature, they do not need to be persisted to disk or synced across nodes; an in-memory store will do. This is the role of Pacemaker. Pacemaker functions as a simple in-memory key/value store with ZooKeeper-like, directory-style keys and byte array values.
@@ -9,7 +9,7 @@ The corresponding Pacemaker client is a plugin for the `ClusterState` interface,
 
 ------
 
-## Configuration
+### Configuration
 
  - `pacemaker.host` : The host that the Pacemaker daemon is running on
  - `pacemaker.port` : The port that Pacemaker will listen on
@@ -38,7 +38,7 @@ $ storm pacemaker
 
 The Storm cluster should now be pushing all worker heartbeats through Pacemaker.
 
-## Security
+### Security
 
 Currently digest (password-based) and Kerberos security are supported. Security is currently only around reads, not writes. Writes may be performed by anyone, whereas reads may only be performed by authorized and authenticated users. This is an area for future development, as it leaves the cluster open to DoS attacks, but it prevents any sensitive information from reaching unauthorized eyes, which was the main goal.