aboutsummaryrefslogtreecommitdiff
path: root/docs/python-programming-guide.md
diff options
context:
space:
mode:
authorTathagata Das <tathagata.das1565@gmail.com>2013-02-18 02:12:41 -0800
committerTathagata Das <tathagata.das1565@gmail.com>2013-02-18 02:12:41 -0800
commit8ad561dc7d6475d7b217ec3f57bac3b584fed31a (patch)
tree84f990d67335abc27c5ba126c75f31d4452a0295 /docs/python-programming-guide.md
parentf98c7da23ef66812b8b4888230ee98c07f09af23 (diff)
downloadspark-8ad561dc7d6475d7b217ec3f57bac3b584fed31a.tar.gz
spark-8ad561dc7d6475d7b217ec3f57bac3b584fed31a.tar.bz2
spark-8ad561dc7d6475d7b217ec3f57bac3b584fed31a.zip
Added checkpointing and fault-tolerance semantics to the programming guide. Fixed default checkpoint interval to being a multiple of slide duration. Fixed visibility of some classes and objects to clean up docs.
Diffstat (limited to 'docs/python-programming-guide.md')
-rw-r--r--docs/python-programming-guide.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/python-programming-guide.md b/docs/python-programming-guide.md
index 4e84d23edf..2012241a6a 100644
--- a/docs/python-programming-guide.md
+++ b/docs/python-programming-guide.md
@@ -87,7 +87,7 @@ By default, the `pyspark` shell creates SparkContext that runs jobs locally.
To connect to a non-local cluster, set the `MASTER` environment variable.
For example, to use the `pyspark` shell with a [standalone Spark cluster](spark-standalone.html):
-{% highlight shell %}
+{% highlight bash %}
$ MASTER=spark://IP:PORT ./pyspark
{% endhighlight %}