Merge pull request #460 from markhamstra/404

Fixed a 404 in 'Tuning Spark' -- missing '.html'
This commit is contained in:
Matei Zaharia 2013-02-10 13:01:09 -08:00
commit b1d809913b

View file

@ -233,7 +233,7 @@ number of cores in your clusters.
## Broadcasting Large Variables
Using the [broadcast functionality](scala-programming-guide#broadcast-variables)
Using the [broadcast functionality](scala-programming-guide.html#broadcast-variables)
available in `SparkContext` can greatly reduce the size of each serialized task, and the cost
of launching a job over a cluster. If your tasks use any large object from the driver program
inside of them (e.g. a static lookup table), consider turning it into a broadcast variable.