Re: Release date for 1.1.0

2014-01-06 Thread Ahmet Emre Aladağ
in Maven repo. But they have to be Hadoop-version specific. As a proposed RM for 1.1.0 I'll publish my plan shortly and it'll cover what artifacts I plan to deploy. Thanks, Roman. -- Ahmet Emre Aladağ

Release date for 1.1.0

2013-10-29 Thread Ahmet Emre Aladağ
Hi all, Is there an expected date for 1.1.0? There has been a lot of way taken since 1.0.0. -- Ahmet Emre Aladağ

Only one worker is running

2013-09-12 Thread Ahmet Emre Aladağ
Hi, I have a custom pagerank computation with inputs reading from Hbase and writing to it. I submit my job on a real distributed Hadoop cluster which can allocate 320 map jobs. I started my job with 100 workers. What I see is that only one of the workers are actually reading the input and

Multiple records for edges.

2013-07-22 Thread Ahmet Emre Aladağ
Hi, While the reader reads from Hbase, it encounters vertices with the same id. v1 - edges: v3,v5,v6 v2 - edges: ... v1 - edges: v4, v7, v9 ... I want to get finally: v1 - edges: v3,v4,v5,v6,v7,v9 but I get v1 - edges: v3,v5,v6 since vertex.initialize(id, value, edges) will not update the

Re: problem with running shortestpath example.

2013-06-24 Thread Ahmet Emre Aladağ
Hi, You have to specify EdgeInputFormat. For another class of mine I use the following command (wrting for just reference): hadoop jar giraph-examples/target/giraph-examples-1.1.0-SNAPSHOT-for-hadoop-1.0.2-jar-with-dependencies.jar org.apache.giraph.GiraphRunner

Edge value types don't match

2013-05-17 Thread Ahmet Emre Aladağ
Hi, I'm trying to implement LinkRank in Giraph. For now, I started with a copy of PageRank example and trying to run and improve it. My VertexInputFormat: Text Float My EdgeInputFormat: Text Text where Text are URLs and Float is the LinkRank score. Now I'm getting a type mismatch error

Hadoop version

2013-04-03 Thread Ahmet Emre Aladağ
Hi, I was wondering if newer Hadoop versions like 1.1.2 will be supported soon. Or is it easy to provide support?