aboutsummaryrefslogtreecommitdiff
path: root/docs/bagel-programming-guide.md
diff options
context:
space:
mode:
authorAndy Konwinski <andyk@berkeley.edu>2012-09-12 16:05:19 -0700
committerAndy Konwinski <andyk@berkeley.edu>2012-09-12 16:06:18 -0700
commit4d3a17c8d768a4e76bfb895ce53715434447cb62 (patch)
tree35d92aab36165b3ec68209622c260ebb9e3e9147 /docs/bagel-programming-guide.md
parent49e98500a9b1f93ab3224c4358dbc56f1e37ff35 (diff)
downloadspark-4d3a17c8d768a4e76bfb895ce53715434447cb62.tar.gz
spark-4d3a17c8d768a4e76bfb895ce53715434447cb62.tar.bz2
spark-4d3a17c8d768a4e76bfb895ce53715434447cb62.zip
Fixing lots of broken links.
Diffstat (limited to 'docs/bagel-programming-guide.md')
-rw-r--r--docs/bagel-programming-guide.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/bagel-programming-guide.md b/docs/bagel-programming-guide.md
index d4d08f8cb1..23f69a3ded 100644
--- a/docs/bagel-programming-guide.md
+++ b/docs/bagel-programming-guide.md
@@ -20,7 +20,7 @@ To write a Bagel application, you will need to add Spark, its dependencies, and
## Programming Model
-Bagel operates on a graph represented as a [[distributed dataset|Spark Programming Guide]] of (K, V) pairs, where keys are vertex IDs and values are vertices plus their associated state. In each superstep, Bagel runs a user-specified compute function on each vertex that takes as input the current vertex state and a list of messages sent to that vertex during the previous superstep, and returns the new vertex state and a list of outgoing messages.
+Bagel operates on a graph represented as a [distributed dataset]({{HOME_PATH}}programming-guide.html) of (K, V) pairs, where keys are vertex IDs and values are vertices plus their associated state. In each superstep, Bagel runs a user-specified compute function on each vertex that takes as input the current vertex state and a list of messages sent to that vertex during the previous superstep, and returns the new vertex state and a list of outgoing messages.
For example, we can use Bagel to implement PageRank. Here, vertices represent pages, edges represent links between pages, and messages represent shares of PageRank sent to the pages that a particular page links to.