Hi Geoffry, On Thu, Mar 27, 2014 at 8:10 PM, <[email protected]> wrote:
> I need to persist existing java objects all of which are based on, and > generated with EMF (eclipse Modeling Framework). > I need to be honest, I am not familiar with this framework so don't understand the structure, semantics and/or content of the objects. > It would appear that with Gora I am generating these classes all over > again in order to store them into Accuulo. Must I do this? Is there a way > to store an existing object? > We do this as we use Avro for object representation and serialization. Everything which runs through Gora is essentially Avro data. If your objects conform to some common Schema then maybe you can pass them OK but I can't confirm this. It would not take you very long to set up and explore this. Once you have your data model established (this takes the form of JSON Avro schema) it is trivial to compile it down in to persistent beans which contain the schema for writing and reading data to and from supported Gora stores... and other Avro data. hth Lewis

