GraphX is the API for distributed graph processing of Apache Spark. In this talk we'll introduce the Pregel programming model and we'll focus on how to write graph algorithms with this paradigm.
km. Path is: Washington [1] => Baltimore [2] => Detroit [3] => NewYork [5] => Chicago [4] Going from Washington to Washington has a distance of 0.0 km. Path is: Washington [1] Going from Washington to Philadelphia has a distance of 91.0 km. Path is: Washington [1] => Baltimore[2] => Detroit[3] => NewYork[5] => Philadelphia[6] Going from Washington to Detroit has a distance of 62.0 km. Path is: Washington [1] => Baltimore [2] => Detroit [3] Going from Washington to NewYork has a distance of 76.0 km. Path is: Washington [1] => Baltimore [2] => Detroit [3] => NewYork [5] Going from Washington to Baltimore has a distance of 27.0 km. Path is: Washington [1] => Baltimore [2] Dijkstra's algorithm implementation Results: