Questions tagged [giraph]

Apache Giraph is an iterative graph processing system built for high scalability.

Apache Giraph is an iterative graph processing system built for high scalability.

For example, it is currently used at Facebook to analyze the social graph formed by users and their connections.

Giraph originated as the open-source counterpart to Pregel, the graph processing architecture developed at Google and described in this paper.

Both systems are inspired by the Bulk Synchronous Parallel model of distributed computation introduced by Leslie Valiant.

Bulk Synchronous Parallel (BSP) abstract computer is a bridging model for designing parallel algorithms. It differs from Parallel random access machine (PRAM) by not talking communication and synchronization for granted. An important part of analyzing a BSP algorithm rests in qualifying the synchronization and the communication needed.

Giraph adds several features beyond the basic Pregel model, including master computation, sharded aggregators, edge-oriented input, out-of-core computation, and more.

With a steady development cycle and a growing community of users worldwide, Giraph is a natural choice for unleashing the potential of structured datasets at a massive scale.

References

156 questions
-1
votes
1 answer

import/save SNAP Facebook edges in Apache Giraph

I'm using SNAP facebook dataset for social network analysis. SNAP uses simple edge list as a data format "node1 node2" . How can I read SNAP dataset in Apache Giraph? I am reading the file with BufferedReader line per line but do not know how to…
anu
  • 39
  • 5
-1
votes
2 answers

Difference between Aster Data and Hadoop/Hive

All the components in Aster Data seems to have a similar component in Hadoop stack. AFS => HDFS SQL-MR => Hive AMC => Ambari ACT => beeline/hive terminal Postgres for storing metadata => Hive can be configured to store metadata in any…
ernesto
  • 1,899
  • 4
  • 26
  • 39
-1
votes
2 answers

Eclipse setup for Giraph

I am a beginner with both java and Eclipse. I would like to know how to prepare Eclipse to make a Giraph program? I have set Giraph up and it's working. And is there a way to run a written program from Eclipse on Giraph? Thank you
-1
votes
1 answer

giraph1.0 on CDH4 with JDK1.6

Can I install giraph1.0 on CDH4 with JDK1.6 as my default java installation? I am getting an error something like this: JDK1.6 version is below JDK1.7 And then the installation fails
Debashisenator
  • 1,621
  • 4
  • 17
  • 16
-2
votes
1 answer

Use of creating Log in Apache Giraph .

I was reading Simple Shortest Paths Computation class. Here : https://apache.googlesource.com/giraph/+/3d4f31343c3686435696e75ce88a75c9bffb024e/giraph-examples/src/main/java/org/apache/giraph/examples/SimpleShortestPathsComputation.java I could not…
nik
  • 33
  • 6
-2
votes
1 answer

Apache giraph compile using maven

I want to modify some examples in Apache giraph. And using maven command "mvn compile; mvn package", I compiled the code and that succeed. But when I run that example by hadoop, that change doesn't appear. Have I use command "mvn install"?
opengllover
  • 241
  • 1
  • 2
  • 4
1 2 3
10
11