summaryrefslogtreecommitdiff
path: root/faq.md
diff options
context:
space:
mode:
authorSean Owen <sowen@cloudera.com>2016-11-11 19:56:10 +0000
committerSean Owen <sowen@cloudera.com>2016-11-15 17:56:22 +0100
commitd82e3722043aa2c2c2d5af6d1e68f16a83101d73 (patch)
tree3520325adf57b6265ecf3f676544a19acb1a1813 /faq.md
parent4e10a1ac10fa773f891422c7c1a3727e47feca8e (diff)
downloadspark-website-d82e3722043aa2c2c2d5af6d1e68f16a83101d73.tar.gz
spark-website-d82e3722043aa2c2c2d5af6d1e68f16a83101d73.tar.bz2
spark-website-d82e3722043aa2c2c2d5af6d1e68f16a83101d73.zip
Use site.baseurl, not site.url, to work with Jekyll 3.3. Require Jekyll 3.3. Again commit HTML consistent with Jekyll 3.3 output. Fix date problem with news posts that set date: by removing date:.
Diffstat (limited to 'faq.md')
-rw-r--r--faq.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/faq.md b/faq.md
index f5c8565ba..f8aa07232 100644
--- a/faq.md
+++ b/faq.md
@@ -23,10 +23,10 @@ Spark is a fast and general processing engine compatible with Hadoop data. It ca
<p class="question">Does my data need to fit in memory to use Spark?</p>
-<p class="answer">No. Spark's operators spill data to disk if it does not fit in memory, allowing it to run well on any sized data. Likewise, cached datasets that do not fit in memory are either spilled to disk or recomputed on the fly when needed, as determined by the RDD's <a href="{{site.url}}docs/latest/scala-programming-guide.html#rdd-persistence">storage level</a>.
+<p class="answer">No. Spark's operators spill data to disk if it does not fit in memory, allowing it to run well on any sized data. Likewise, cached datasets that do not fit in memory are either spilled to disk or recomputed on the fly when needed, as determined by the RDD's <a href="{{site.baseurl}}/docs/latest/scala-programming-guide.html#rdd-persistence">storage level</a>.
<p class="question">How can I run Spark on a cluster?</p>
-<p class="answer">You can use either the <a href="{{site.url}}docs/latest/spark-standalone.html">standalone deploy mode</a>, which only needs Java to be installed on each node, or the <a href="{{site.url}}docs/latest/running-on-mesos.html">Mesos</a> and <a href="{{site.url}}docs/latest/running-on-yarn.html">YARN</a> cluster managers. If you'd like to run on Amazon EC2, Spark provides <a href="{{site.url}}docs/latest/ec2-scripts.html}}">EC2 scripts</a> to automatically launch a cluster.</p>
+<p class="answer">You can use either the <a href="{{site.baseurl}}/docs/latest/spark-standalone.html">standalone deploy mode</a>, which only needs Java to be installed on each node, or the <a href="{{site.baseurl}}/docs/latest/running-on-mesos.html">Mesos</a> and <a href="{{site.baseurl}}/docs/latest/running-on-yarn.html">YARN</a> cluster managers. If you'd like to run on Amazon EC2, Spark provides <a href="{{site.baseurl}}/docs/latest/ec2-scripts.html}}">EC2 scripts</a> to automatically launch a cluster.</p>
<p>Note that you can also run Spark locally (possibly on multiple cores) without any special setup by just passing <code>local[N]</code> as the master URL, where <code>N</code> is the number of parallel threads you want.</p>
@@ -62,7 +62,7 @@ and <a href="https://www.apache.org/foundation/marks/">trademark policy</a>.
In particular, note that there are strong restrictions about how third-party products
use the "Spark" name (names based on Spark are generally not allowed).
Please also refer to our
-<a href="{{site.url}}trademarks.html">trademark policy summary</a>.
+<a href="{{site.baseurl}}/trademarks.html">trademark policy summary</a>.
</p>
<p class="question">How can I contribute to Spark?</p>