| Class | Description |
|---|---|
| DGAAbstractEdgeInputFormat<E extends Writable> |
Abstract class that simplifies the setup of our EdgeInputFormat subclasses.
|
| DGAAbstractEdgeOutputFormat<I extends WritableComparable,V extends Writable,E extends Writable> |
The EdgeTDTOutputFormat outputs the edges that make up our graph.
|
| DGAEdgeTDTOutputFormat | |
| DGAEdgeTTTOutputFormat | |
| DGALongEdgeValueInputFormat |
Implementation of the DGAAbstractEdgeInputFormat for LongWritables as the edgeValue
Will throw an IOException if our edgeValue can't be parsed to Long, then returns a LongWritable in the getValue(RawEdge) method.
|
| DGATextEdgeValueInputFormat |
Implementation of the DGAAbstractEdgeInputFormat for Text as the edgeValue
Does no verification of the edgeValue and simply returns the third value as a Text
|
| HBSEOutputFormat |
Writes the approximated betweenness value for each vertex
|
| LouvainVertexInputFormat |
Reads in a graph from text file in hdfs.
|
| LouvainVertexOutputFormat |
Outputs the graph as text in hdfs:
Format is a tab seperated file with
id community id internal weight community edge list
the edge list is a comma seperated list of edges of the form id:weight
|
| RawEdge |