├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── project ├── build.properties └── plugins.sbt └── src └── main ├── resources ├── UserGraph.tsv └── UserNames.tsv └── scala └── com └── github └── graphx ├── pagerank └── SocialPageRankJob.scala └── pregel ├── jobs ├── social │ └── SocialGraphJob.scala └── ssp │ └── ShortestPathProblemJob.scala ├── social ├── InputDataFlow.scala ├── SocialGraph.scala └── package.scala └── ssp └── ShortestPathProblem.scala /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem0/spark-graphx/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem0/spark-graphx/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem0/spark-graphx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem0/spark-graphx/HEAD/README.md -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version = 1.1.0 -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem0/spark-graphx/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /src/main/resources/UserGraph.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem0/spark-graphx/HEAD/src/main/resources/UserGraph.tsv -------------------------------------------------------------------------------- /src/main/resources/UserNames.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem0/spark-graphx/HEAD/src/main/resources/UserNames.tsv -------------------------------------------------------------------------------- /src/main/scala/com/github/graphx/pagerank/SocialPageRankJob.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem0/spark-graphx/HEAD/src/main/scala/com/github/graphx/pagerank/SocialPageRankJob.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/graphx/pregel/jobs/social/SocialGraphJob.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem0/spark-graphx/HEAD/src/main/scala/com/github/graphx/pregel/jobs/social/SocialGraphJob.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/graphx/pregel/jobs/ssp/ShortestPathProblemJob.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem0/spark-graphx/HEAD/src/main/scala/com/github/graphx/pregel/jobs/ssp/ShortestPathProblemJob.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/graphx/pregel/social/InputDataFlow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem0/spark-graphx/HEAD/src/main/scala/com/github/graphx/pregel/social/InputDataFlow.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/graphx/pregel/social/SocialGraph.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem0/spark-graphx/HEAD/src/main/scala/com/github/graphx/pregel/social/SocialGraph.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/graphx/pregel/social/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem0/spark-graphx/HEAD/src/main/scala/com/github/graphx/pregel/social/package.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/graphx/pregel/ssp/ShortestPathProblem.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artem0/spark-graphx/HEAD/src/main/scala/com/github/graphx/pregel/ssp/ShortestPathProblem.scala --------------------------------------------------------------------------------