You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Example of the usage Apache Spark for analysis of social graph of users -
5
+
like social network with model friend to friend but with fake user names.
6
+
7
+
Social graph is represented in form user_id -> array of related user's ids,
8
+
file is stored in resources directory - UserGraph.txt
9
+
10
+
Tested data is stored in resource directory - UserNames.tsv - file in
11
+
format user_id -> user_name, necessary for joining with Graph of contacts.
12
+
13
+
Examples contains searching of:
14
+
1) Most connected user in social graph based on graph degrees
15
+
2) Degree of separation for single user based on [Breadth-first search](https://en.wikipedia.org/wiki/Breadth-first_search) with [Pregel](https://stanford.edu/~rezab/classes/cme323/S15/notes/lec8.pdf)
0 commit comments