aboutsummaryrefslogtreecommitdiff
path: root/docs/spark-standalone.md
diff options
context:
space:
mode:
authorAndrew Ash <andrew@andrewash.com>2014-09-17 15:07:57 -0700
committerAndrew Or <andrewor14@gmail.com>2014-09-17 15:07:57 -0700
commitb3830b28f8a70224d87c89d8491c514c4c191d23 (patch)
tree89db0c2c7c37c93841f34fc9342160644d00846c /docs/spark-standalone.md
parent5044e4953a1744593d83fe90628fb4893e5463f1 (diff)
downloadspark-b3830b28f8a70224d87c89d8491c514c4c191d23.tar.gz
spark-b3830b28f8a70224d87c89d8491c514c4c191d23.tar.bz2
spark-b3830b28f8a70224d87c89d8491c514c4c191d23.zip
Docs: move HA subsections to a deeper indentation level
Makes the table of contents read better Author: Andrew Ash <andrew@andrewash.com> Closes #2402 from ash211/docs/better-indentation and squashes the following commits: ea0e130 [Andrew Ash] Move HA subsections to a deeper indentation level
Diffstat (limited to 'docs/spark-standalone.md')
-rw-r--r--docs/spark-standalone.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/spark-standalone.md b/docs/spark-standalone.md
index c791c81f8b..99a8e43a6b 100644
--- a/docs/spark-standalone.md
+++ b/docs/spark-standalone.md
@@ -307,7 +307,7 @@ tight firewall settings. For a complete list of ports to configure, see the
By default, standalone scheduling clusters are resilient to Worker failures (insofar as Spark itself is resilient to losing work by moving it to other workers). However, the scheduler uses a Master to make scheduling decisions, and this (by default) creates a single point of failure: if the Master crashes, no new applications can be created. In order to circumvent this, we have two high availability schemes, detailed below.
-# Standby Masters with ZooKeeper
+## Standby Masters with ZooKeeper
**Overview**
@@ -347,7 +347,7 @@ There's an important distinction to be made between "registering with a Master"
Due to this property, new Masters can be created at any time, and the only thing you need to worry about is that _new_ applications and Workers can find it to register with in case it becomes the leader. Once registered, you're taken care of.
-# Single-Node Recovery with Local File System
+## Single-Node Recovery with Local File System
**Overview**