| Name | Description | Type | Package | Framework |
| AggregatorsTestComputation | Computation which uses aggrergators. | Class | org.apache.giraph.examples | Giraph |
|
| AggregatorsTestComputation .AggregatorsTestMasterCompute | Master compute which uses aggregators. | Class | org.apache.giraph.examples.AggregatorsTestComputation | Giraph |
|
| AggregatorsTestComputation .SimpleEdgeInputFormat | | Class | org.apache.giraph.examples.AggregatorsTestComputation | Giraph |
|
| AggregatorsTestComputation .SimpleEdgeReader | | Class | org.apache.giraph.examples.AggregatorsTestComputation | Giraph |
|
| AggregatorsTestComputation .SimpleVertexInputFormat | | Class | org.apache.giraph.examples.AggregatorsTestComputation | Giraph |
|
| AggregatorsTestComputation .SimpleVertexReader | | Class | org.apache.giraph.examples.AggregatorsTestComputation | Giraph |
|
| Algorithm | This annotation should be used to annotate built-in algorithms. | Class | org.apache.giraph.examples | Giraph |
|
| BrachaTouegDeadlockComputation | This code demonstrates the Bracha Toueg deadlock detection algorithm. | Class | org.apache.giraph.examples | Giraph |
|
| BrachaTouegDeadlockInputFormat | VertexInputFormat for the Bracha Toueg Deadlock Detection algorithm specified in JSON format. | Class | org.apache.giraph.examples.io.formats | Giraph |
|
| BrachaTouegDeadlockMessage | Data sent via a message that includes the source vertex id. | Class | org.apache.giraph.examples.utils | Giraph |
|
| BrachaTouegDeadlockVertexValue | | Class | org.apache.giraph.examples.utils | Giraph |
|
| ConnectedComponentsComputation | assigns each vertex its component identifier (the smallest vertex id The idea behind the algorithm is very simple: propagate the smallest | Class | org.apache.giraph.examples | Giraph |
|
| GeneratedEdgeReader | Used by GeneratedEdgeInputFormat to read some generated data | Class | org.apache.giraph.examples | Giraph |
|
| GeneratedVertexReader | | Class | org.apache.giraph.examples | Giraph |
|
| IdentityComputation | User applications can subclass IdentityComputation, which simply prints the results that have been read for testing IO related | Class | org.apache.giraph.examples | Giraph |
|
| LongDoubleDoubleTextInputFormat | Simple text-based VertexInputFormat for unweighted graphs with long ids. | Class | org.apache.giraph.examples | Giraph |
|
| LongDoubleFloatTextInputFormat | Simple text-based VertexInputFormat for weighted graphs with long ids. | Class | org.apache.giraph.examples | Giraph |
|
| LongDoubleNullTextInputFormat | Input format for unweighted graphs with long ids. | Class | org.apache.giraph.examples | Giraph |
|
| MaxComputation | Simple algorithm that computes the max value in the graph. | Class | org.apache.giraph.examples | Giraph |
|
| NormalizingLongDoubleDoubleTextInputFormat | Simple text-based VertexInputFormat for unweighted graphs with long ids. | Class | org.apache.giraph.examples | Giraph |
|
| PageRankComputation | The PageRank algorithm, with uniform transition probabilities on the edges http://en. | Class | org.apache.giraph.examples | Giraph |
|
| RandomWalkComputation | | Class | org.apache.giraph.examples | Giraph |
|
| RandomWalkVertexMasterCompute | Master compute associated with RandomWalkComputation. | Class | org.apache.giraph.examples | Giraph |
|
| RandomWalkWithRestartComputation | Executes RandomWalkWithRestart, a random walk on the graph which is biased towards a source vertex. | Class | org.apache.giraph.examples | Giraph |
|
| RandomWalkWorkerContext | Worker context for random walks. | Class | org.apache.giraph.examples | Giraph |
|
| SccComputation | Finds strongly connected components of the graph. | Class | org.apache.giraph.examples.scc | Giraph |
|
| SccLongLongNullTextInputFormat | Simple text-based VertexInputFormat for unweighted graphs with long ids. | Class | org.apache.giraph.examples.scc | Giraph |
|
| SccPhaseMasterCompute | This master compute keeps track of what phase is being currently executed by the Strongly Connected Components computation. | Class | org.apache.giraph.examples.scc | Giraph |
|
| SccPhaseMasterCompute .Phases | Vertex convergence in SCCMaximum id propagation | Class | org.apache.giraph.examples.scc.SccPhaseMasterCompute | Giraph |
|
| SccVertexValue | Vertex value for the Strongly Connected Components algorithm. | Class | org.apache.giraph.examples.scc | Giraph |
|
| SimpleAggregatorWriter | This is a simple example for an aggregator writer. | Class | org.apache.giraph.examples | Giraph |
|
| SimpleCheckpoint | An example that simply uses its id, value, and edges to compute new data every iteration to verify that checkpoint restarting works. | Class | org.apache.giraph.examples | Giraph |
|
| SimpleCheckpoint .SimpleCheckpointComputation | | Class | org.apache.giraph.examples.SimpleCheckpoint | Giraph |
|
| SimpleCheckpoint .SimpleCheckpointVertexMasterCompute | Master compute associated with SimpleCheckpoint. | Class | org.apache.giraph.examples.SimpleCheckpoint | Giraph |
|
| SimpleCheckpoint .SimpleCheckpointVertexWorkerContext | Worker context associated with SimpleCheckpoint. | Class | org.apache.giraph.examples.SimpleCheckpoint | Giraph |
|
| SimpleCombinerComputation | Test whether messages can go through a combiner. | Class | org.apache.giraph.examples | Giraph |
|
| SimpleFailComputation | | Class | org.apache.giraph.examples | Giraph |
|
| SimpleInDegreeCountComputation | Simple function to return the out degree for each vertex. | Class | org.apache.giraph.examples | Giraph |
|
| SimpleLongDoubleDoubleDoubleIdentityComputation | A simple use of the Identity Vertex for taking care of Long, Double, Double, Double type Inputformat Good for use with | Class | org.apache.giraph.examples | Giraph |
|
| SimpleMasterComputeComputation | | Class | org.apache.giraph.examples | Giraph |
|
| SimpleMasterComputeComputation .SimpleMasterCompute | MasterCompute used with SimpleMasterComputeComputation. | Class | org.apache.giraph.examples.SimpleMasterComputeComputation | Giraph |
|
| SimpleMasterComputeComputation .SimpleMasterComputeWorkerContext | Worker context used with SimpleMasterComputeComputation. | Class | org.apache.giraph.examples.SimpleMasterComputeComputation | Giraph |
|
| SimpleMsgComputation | Test whether messages can be sent and received by vertices. | Class | org.apache.giraph.examples | Giraph |
|
| SimpleMutateGraphComputation | Vertex to allow unit testing of graph mutations. | Class | org.apache.giraph.examples | Giraph |
|
| SimpleMutateGraphComputation .SimpleMutateGraphVertexWorkerContext | Worker context used with SimpleMutateGraphComputation. | Class | org.apache.giraph.examples.SimpleMutateGraphComputation | Giraph |
|
| SimpleOutDegreeCountComputation | Simple function to return the out degree for each vertex. | Class | org.apache.giraph.examples | Giraph |
|
| SimplePageRankComputation | Demonstrates the basic Pregel PageRank implementation. | Class | org.apache.giraph.examples | Giraph |
|
| SimplePageRankComputation .SimplePageRankMasterCompute | Master compute associated with SimplePageRankComputation. | Class | org.apache.giraph.examples.SimplePageRankComputation | Giraph |
|
| SimplePageRankComputation .SimplePageRankVertexInputFormat | | Class | org.apache.giraph.examples.SimplePageRankComputation | Giraph |
|
| SimplePageRankComputation .SimplePageRankVertexOutputFormat | | Class | org.apache.giraph.examples.SimplePageRankComputation | Giraph |
|
| SimplePageRankComputation .SimplePageRankVertexReader | | Class | org.apache.giraph.examples.SimplePageRankComputation | Giraph |
|
| SimplePageRankComputation .SimplePageRankWorkerContext | Worker context used with SimplePageRankComputation. | Class | org.apache.giraph.examples.SimplePageRankComputation | Giraph |
|
| SimpleShortestPathsComputation | Demonstrates the basic Pregel shortest paths implementation. | Class | org.apache.giraph.examples | Giraph |
|
| SimpleSuperstepComputation | | Class | org.apache.giraph.examples | Giraph |
|
| SimpleSuperstepComputation .SimpleSuperstepVertexInputFormat | | Class | org.apache.giraph.examples.SimpleSuperstepComputation | Giraph |
|
| SimpleSuperstepComputation .SimpleSuperstepVertexOutputFormat | | Class | org.apache.giraph.examples.SimpleSuperstepComputation | Giraph |
|
| SimpleSuperstepComputation .SimpleSuperstepVertexReader | | Class | org.apache.giraph.examples.SimpleSuperstepComputation | Giraph |
|
| SimpleTextVertexOutputFormat | Simple text based vertex output format example. | Class | org.apache.giraph.examples | Giraph |
|
| SimpleTriangleClosingComputation | Demonstrates triangle closing in simple, unweighted graphs for Giraph. | Class | org.apache.giraph.examples | Giraph |
|
| SimpleTriangleClosingComputation .IntArrayListWritable | Utility class for delivering the array of vertices THIS vertex should connect with to close triangles with neighbors | Class | org.apache.giraph.examples.SimpleTriangleClosingComputation | Giraph |
|
| SimpleTriangleClosingComputation .Pair | | Class | org.apache.giraph.examples.SimpleTriangleClosingComputation | Giraph |
|
| SimpleVertexWithWorkerContext | Fully runnable example of how to emit worker data to HDFS during a graph | Class | org.apache.giraph.examples | Giraph |
|
| SimpleVertexWithWorkerContext .EmitterWorkerContext | Example worker context to emit data as part of a superstep. | Class | org.apache.giraph.examples.SimpleVertexWithWorkerContext | Giraph |
|
| SimpleVertexWithWorkerContext .SimpleComputation | | Class | org.apache.giraph.examples.SimpleVertexWithWorkerContext | Giraph |
|
| TestComputationStateComputation | | Class | org.apache.giraph.examples | Giraph |
|
| TestComputationStateComputation .TestComputationStateWorkerContext | | Class | org.apache.giraph.examples.TestComputationStateComputation | Giraph |
|
| VerifyMessage | An example that simply uses its id, value, and edges to compute new data every iteration to verify that messages are sent and received at the | Class | org.apache.giraph.examples | Giraph |
|
| VerifyMessage .VerifiableMessage | Message that will be sent in VerifyMessage. | Class | org.apache.giraph.examples.VerifyMessage | Giraph |
|
| VerifyMessage .VerifyMessageComputation | Send and verify messages. | Class | org.apache.giraph.examples.VerifyMessage | Giraph |
|
| VerifyMessage .VerifyMessageComputation .VerifyMessageVertexWorkerContext | Worker context used with VerifyMessage. | Class | org.apache.giraph.examples.VerifyMessage.VerifyMessageComputation | Giraph |
|
| VerifyMessage .VerifyMessageMasterCompute | Master compute associated with VerifyMessage. | Class | org.apache.giraph.examples.VerifyMessage | Giraph |
|
| VertexWithDoubleValueDoubleEdgeTextOutputFormat | Simple vertex output format for weighted graphs. | Class | org.apache.giraph.examples | Giraph |
|
| VertexWithDoubleValueNullEdgeTextOutputFormat | | Class | org.apache.giraph.examples | Giraph |