Skip to content

Commit 89f7677

Browse files
Work in progress
1 parent 845c7ce commit 89f7677

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
- [Introduction](#introduction)
1616
* [GraphX](#graphx)
1717
* [Pregel](#pregel)
18+
- [Setup](#setup)
1819
---
1920

2021
<a id="introduction" />
@@ -28,7 +29,7 @@ __Apache Spark__ analysis of big data became essential easier. Spark brings a lo
2829

2930
<a id="graphx" />
3031

31-
##### 1.1 GraphX
32+
##### 1.1. GraphX
3233

3334
[GraphX](https://spark.apache.org/docs/latest/graphx-programming-guide.html) is a new component in Spark for graphs and graph-parallel computation. At a high level, GraphX extends the Spark RDD by introducing a new Graph abstraction: a directed multigraph with properties attached to each vertex and edge.
3435

@@ -37,9 +38,12 @@ This repository serves as a starting point for working with _Spark GraphX API_.
3738

3839
<a id="pregel" />
3940

40-
##### 1.2 Pregel
41+
##### 1.2. Pregel
4142

4243
Pregel, originally developed by Google, is essentially a message-passing interface which facilitates the processing of large-scale graphs. _Apache Spark's GraphX_ module provides the [Pregel API](https://spark.apache.org/docs/latest/graphx-programming-guide.html#pregel-api) which allow us to write distributed graph programs / algorithms. For more details, kindly check out the [original paper](https://github.com/mohammadzainabbas/SDM-Lab-2/blob/main/docs/pregel.pdf)
4344

4445
---
4546

47+
<a id="setup" />
48+
49+
#### 2. Setup

0 commit comments

Comments
 (0)