Re: Error in instantiating custom Vertex class via InternalVertexRunner.run

2012-03-05 Thread Benjamin Heitmann
On 2 Mar 2012, at 23:15, Avery Ching wrote: If I'm reading this right, you're using a public abstract class for the vertex. The vertex class must be instantiable and cannot be abstract. Hope that helps, Thanks, that was the right issue to point out. I removed the abstract keyword,

Re: Error in instantiating custom Vertex class via InternalVertexRunner.run

2012-03-05 Thread Benjamin Heitmann
On 3 Mar 2012, at 13:49, Sebastian Schelter wrote: Hi Benjamin, Does your vertex class have a publicly accessible no-arg constructor? That's implicitly required because each Vertex class implements Writable. Thanks for the hint, I ran into that problem a little bit later. I had to add a

Re: Error in instantiating custom Vertex class via InternalVertexRunner.run

2012-03-05 Thread Avery Ching
Inline responses. We look forward to hearing about your work Benjamin! On 3/5/12 9:12 AM, Benjamin Heitmann wrote: On 2 Mar 2012, at 23:15, Avery Ching wrote: If I'm reading this right, you're using a public abstract class for the vertex. The vertex class must be instantiable and cannot be