Run custom project using giraph on yarn cluster

2015-07-16 Thread Vitaly Tsvetkoff
Hello everyone! Apache Giraph is the most useful framework dealing with bigdata graphs. But I have some difficulties about how to use it in my own custom project. Little story about what has already done. I download giraph-1.2.0 and build the next: *mvn clean install -DskipTests -Dcheckstyle.skip=

How to read from hive using giraph-hive library

2014-04-12 Thread Deepankar Patra
​Hi everyone, I am new to giraph. I need to read from hive for my program. I cant find any example or any documentation which clearly explains how we can do that using giraph-hive. Tried reading through the code but its confusing. Any help will be appreciated.​ ​Thank you giraph-noob​

Re: how to input two graphs using giraph

2014-04-03 Thread Lukas Nalezenec
Hi, You have to make custom aggregator - Giraph is not designed for this use case - this is little bit hacky. I am not sure if MasterComputation is executed before first iteration. Regards Lukas On 3.4.2014 09:16, Akshay Trivedi wrote: rs at org.apache.giraph.aggregators package but I am unab

Re: how to input two graphs using giraph

2014-04-03 Thread Akshay Trivedi
Hi, Thank you for the quick reply Lukas. I looked up aggregators at org.apache.giraph.aggregators package but I am unable to find any aggregator for graphs in that package. Can you tell me which implementation of persistent aggregator I need to use or do I need to implement a custom aggregator?? R

Re: how to input two graphs using giraph

2014-04-02 Thread Lukas Nalezenec
Hi, You can also store the query graph to MR Distributed cache. Regards Lukas On 2.4.2014 14:15, Lukas Nalezenec wrote: Hi, I would try to load the query graph in custom MasterComputation and distribute it to computations/workers using persistent aggregator. Regards Lukas On 2.4.2014 14:0

Re: how to input two graphs using giraph

2014-04-02 Thread Lukas Nalezenec
Hi, I would try to load the query graph in custom MasterComputation and distribute it to computations/workers using persistent aggregator. Regards Lukas On 2.4.2014 14:01, Akshay Trivedi wrote: Hi, I want to solve sub-graph isomorphism through giraph so I need to input two graphs-Data Graph(

how to input two graphs using giraph

2014-04-02 Thread Akshay Trivedi
Hi, I want to solve sub-graph isomorphism through giraph so I need to input two graphs-Data Graph(having million of nodes) and Query Graph(having few nodes). Can anyone help me on how to take the data graph and query graph as input(Both are saved two different files in JsonLongDoubleFloatDouble for

how to input two graphs using giraph

2014-04-02 Thread Akshay Trivedi
Hi, I want to solve sub-graph isomorphism through giraph so I need to input two graphs-Data Graph(having million of nodes) and Query Graph(having few nodes). Can anyone help me on how to take the data graph and query graph as input(Both are saved two different files in JsonLongDoubleFloatDouble for

Re: Using Giraph

2014-03-11 Thread Arko Provo Mukherjee
k above for >>> specific messages explaining why the rule failed. -> [Help 1]* >>> >>> >>> Please help! The Java issue seems to be a warning rather than an error. >>> My >>> Java version is 1.6.0_65. >>> >>> Thanks & reg

Re: Using Giraph

2014-03-11 Thread Sebastian Schelter
w to learn code custom graph algorithms using Giraph. I have some experience using MapReduce and have coded Graph Algorithms on top of Hadoop. Now I want to learn how to do the same for Pregel (using Giraph). I have downloaded giraph-1.0.0 but didn't find in JAR files as you do in Hadoop D

Re: Using Giraph

2014-03-11 Thread Arko Provo Mukherjee
gt; [Help 1]* > > Please help! The Java issue seems to be a warning rather than an error. My > Java version is 1.6.0_65. > > Thanks & regards > Arko > > > > > On Sat, Mar 1, 2014 at 7:14 PM, Arko Provo Mukherjee < > arkoprovomukher...@gmail.com> wrote: > &

Re: Using Giraph

2014-03-11 Thread Arko Provo Mukherjee
ning rather than an error. My Java version is 1.6.0_65. Thanks & regards Arko On Sat, Mar 1, 2014 at 7:14 PM, Arko Provo Mukherjee < arkoprovomukher...@gmail.com> wrote: > Hello Giraph Gurus, > > I am interested in learning how to learn code custom graph algorithms > using

Re: Using Giraph

2014-03-04 Thread Arko Provo Mukherjee
doop--jar-with-dependencies.jar >>> inside GIRAPH_HOME/giraph-core/target folder. Use this jar file. Take a >>> look at following link. >>> https://giraph.apache.org/quick_start.html >>> >>> >>> On Sun, Mar 2, 2014 at 6:44 AM, Arko Provo Mukher

Re: Using Giraph

2014-03-04 Thread Agrta Rawat
ar 2, 2014 at 6:44 AM, Arko Provo Mukherjee < >> arkoprovomukher...@gmail.com> wrote: >> >>> Hello Giraph Gurus, >>> >>> I am interested in learning how to learn code custom graph algorithms >>> using Giraph. >>> >>> I have

Re: Using Giraph

2014-03-03 Thread Arko Provo Mukherjee
https://giraph.apache.org/quick_start.html > > > On Sun, Mar 2, 2014 at 6:44 AM, Arko Provo Mukherjee < > arkoprovomukher...@gmail.com> wrote: > >> Hello Giraph Gurus, >> >> I am interested in learning how to learn code custom graph algorithms >> using Gi

Re: Using Giraph

2014-03-02 Thread Agrta Rawat
://giraph.apache.org/quick_start.html On Sun, Mar 2, 2014 at 6:44 AM, Arko Provo Mukherjee < arkoprovomukher...@gmail.com> wrote: > Hello Giraph Gurus, > > I am interested in learning how to learn code custom graph algorithms > using Giraph. > > I have some experience using MapRed

Using Giraph

2014-03-01 Thread Arko Provo Mukherjee
Hello Giraph Gurus, I am interested in learning how to learn code custom graph algorithms using Giraph. I have some experience using MapReduce and have coded Graph Algorithms on top of Hadoop. Now I want to learn how to do the same for Pregel (using Giraph). I have downloaded giraph-1.0.0 but

Wanting help on completing calculating Betweeness using giraph

2014-02-12 Thread Apostolos Koutras
Hi fellow developers, In the past day, I am struggling on completing calculating Betweeness for a graph. Browsing in some forums, some stated that this cannot be done. This point of view is simply put WRONG!. I have uploaded my work in https://github.com/koutras/gb where everyone with an interes

Fwd: a question about using giraph

2013-11-07 Thread Freeman Liu
Hello Everyone, I have a question about Giraph: I could run all the example programs. I want to place my development code in a different directory other than the giraph directory. I copied the SimplePageRankComputation.java to a different directory, compiled it(with a different package name). But

Re: Using Giraph at Facebook

2013-08-22 Thread Eli Reisman
Great paper! On Thu, Aug 15, 2013 at 1:06 PM, Amaan Penang wrote: > All, > > Sorry for the unintentional spam; I meant to forward this message to a > friend and accidentally hit reply. Keep up the great work! > > -a > > On Aug 15, 2013, at 12:58 PM, Amaan Penang wrote: > > > Hey, > > > > Take

Re: Using Giraph at Facebook

2013-08-15 Thread Amaan Penang
All, Sorry for the unintentional spam; I meant to forward this message to a friend and accidentally hit reply. Keep up the great work! -a On Aug 15, 2013, at 12:58 PM, Amaan Penang wrote: > Hey, > > Take a look at Apache Giraph; it's based on Google's Pregel paper. The > article below was put

Re: Using Giraph at Facebook

2013-08-15 Thread Amaan Penang
Hey, Take a look at Apache Giraph; it's based on Google's Pregel paper. The article below was put out by Facebook Engineering on how they use it. -a On Aug 14, 2013, at 4:55 PM, Avery Ching wrote: > Hi Giraphers, > > We recently released an article on we can use Giraph at the scale of a > tri

Re: Using Giraph at Facebook

2013-08-15 Thread André Kelpe
Great article! Can you say something about your deployment in terms of java version and jvm parameters (gc, max memory etc.)? It will be useful to others, to learn best practices for such huge giraph jobs. - André 2013/8/15 Avery Ching > > Hi Giraphers, > > We recently released an article on we

RE: Using Giraph at Facebook

2013-08-15 Thread Marco Aurelio Barbosa Fagnani Lotz
___ From: Avery Ching Sent: 15 August 2013 00:55 To: user@giraph.apache.org Subject: Using Giraph at Facebook Hi Giraphers, We recently released an article on we can use Giraph at the scale of a trillion edges at Facebook. If you're interested, please take a look! https://www.faceboo

Re: Using Giraph at Facebook

2013-08-14 Thread Sebastian Schelter
Just ran into it, great read. I hope that I will be able contribute again in the future. Awesome job done! Am 14.08.2013 16:55 schrieb "Avery Ching" : > Hi Giraphers, > > We recently released an article on we can use Giraph at the scale of a > trillion edges at Facebook. If you're interested, pl

Using Giraph at Facebook

2013-08-14 Thread Avery Ching
Hi Giraphers, We recently released an article on we can use Giraph at the scale of a trillion edges at Facebook. If you're interested, please take a look! https://www.facebook.com/notes/facebook-engineering/scaling-apache-giraph-to-a-trillion-edges/10151617006153920 Avery

Re: Connected components using giraph hadoop on amazon EC2

2012-08-07 Thread Vishal Patel
Awesome! That works. Thank you Avery. Vishal On Tue, Aug 7, 2012 at 6:39 PM, Avery Ching wrote: > Hi Vishal, > > This issue is due to Hadoop limiting the job counters. > > org.apache.hadoop.mapred.Counters$CountersExceededException: Error: > Exceeded limits on number of counters - Counters=12

Re: Connected components using giraph hadoop on amazon EC2

2012-08-07 Thread Avery Ching
Hi Vishal, This issue is due to Hadoop limiting the job counters. org.apache.hadoop.mapred.Counters$CountersExceededException: Error: Exceeded limits on number of counters - Counters=120 Limit=120 You can either disable the Giraph counters per superstep (-Dgiraph.useSuperstepCounters=false),