Skip to content
Snippets Groups Projects
Commit 4e093b88 authored by Patrick Wendell's avatar Patrick Wendell
Browse files

Fixing broken links in programming guide

parent dca80094
No related branches found
No related tags found
No related merge requests found
...@@ -142,7 +142,7 @@ All transformations in Spark are <i>lazy</i>, in that they do not compute their ...@@ -142,7 +142,7 @@ All transformations in Spark are <i>lazy</i>, in that they do not compute their
By default, each transformed RDD is recomputed each time you run an action on it. However, you may also *persist* an RDD in memory using the `persist` (or `cache`) method, in which case Spark will keep the elements around on the cluster for much faster access the next time you query it. There is also support for persisting datasets on disk, or replicated across the cluster. The next section in this document describes these options. By default, each transformed RDD is recomputed each time you run an action on it. However, you may also *persist* an RDD in memory using the `persist` (or `cache`) method, in which case Spark will keep the elements around on the cluster for much faster access the next time you query it. There is also support for persisting datasets on disk, or replicated across the cluster. The next section in this document describes these options.
The following tables list the transformations and actions currently supported (see also the [RDD API doc](api/core/index.html#org.apache.spark.RDD) for details): The following tables list the transformations and actions currently supported (see also the [RDD API doc](api/core/index.html#org.apache.spark.rdd.RDD) for details):
### Transformations ### Transformations
...@@ -211,7 +211,7 @@ The following tables list the transformations and actions currently supported (s ...@@ -211,7 +211,7 @@ The following tables list the transformations and actions currently supported (s
</tr> </tr>
</table> </table>
A complete list of transformations is available in the [RDD API doc](api/core/index.html#org.apache.spark.RDD). A complete list of transformations is available in the [RDD API doc](api/core/index.html#org.apache.spark.rdd.RDD).
### Actions ### Actions
...@@ -259,7 +259,7 @@ A complete list of transformations is available in the [RDD API doc](api/core/in ...@@ -259,7 +259,7 @@ A complete list of transformations is available in the [RDD API doc](api/core/in
</tr> </tr>
</table> </table>
A complete list of actions is available in the [RDD API doc](api/core/index.html#org.apache.spark.RDD). A complete list of actions is available in the [RDD API doc](api/core/index.html#org.apache.spark.rdd.RDD).
## RDD Persistence ## RDD Persistence
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment