Re: How to output into multiple files through a GiraphJob

2014-06-21 Thread Ferenc Béres
Hi John, Yes, I also maintain several states within my vertex values so I use BasicComputation. Regarding the output I use this configuration: GiraphConfiguration conf = new GiraphConfiguration(); conf.setVertexOutputFormatClass(ColumnOutputFormat.class);

How to output into multiple files through a GiraphJob

2014-06-19 Thread Ferenc Béres
Hi Everyone, Currently I'm working on an ALS implementation in giraph 1.1.0 and I would like to output the values of the vertices into multiple output files, but I could not figure it out how to do it. I found that in Hadoop it can be done by using

Re: How to output into multiple files through a GiraphJob

2014-06-19 Thread John Yost
Hi Ferenc, I have an Giraph job that outputs from the Computation class as opposed to the MasterCompute because I need to maintain alot of state within VertexValues as opposed to Aggregators. This is one way of outputting results as multiple files. I am assuming that you want to scope output