I am trying to run Stanford Network Analysis Program (SNAP) graphs on Apache Giraph using Hadoop. The link is provided below http://snap.stanford.edu/snap/
Currently I am trying to run the facebook graph which is in the simple edge list format source_id destination_id .. Link is : http://snap.stanford.edu/data/egonets-Facebook.html
I am not able to determine which format does Apache Giraph accept to run the SimpleShortestPathsCompute or any other Java Program for accepting input of the simple edge list format.
I was successfully able to run SimpleShortestPathsCompute and PageRankComputation Algorithms which are in the examples folder of the Giraph package on input files with JSON Format. [source_id, source_value, [[destination_id, edge_value], [destination_id, edge_value],..]]