HBase Object Mapper

2015-02-15 Thread Sleiman Jneidi
Hi Guys, hope you all had a great weekend. Recently, I had to do a lot of HBase data access and I needed a mapper, but I didn't like any of the existing mappers (Gora, Kundera, etc.. ) maybe I am mistaken. I just needed a light weight and easy to use mapper. So I created one and put it on Github.

Re: HBase Object Mapper

2015-02-15 Thread Jean-Marc Spaggiari
Nice, thanks for Sharing Sleiman. Can you do a quick pros and cons to compare Gora, Kundera and yours? Might help so see which one fits best for other people usecases? Thanks, JM 2015-02-15 9:49 GMT-05:00 Sleiman Jneidi : > Hi Guys, hope you all had a great weekend. > Recently, I had to do a

Re: HBase Object Mapper

2015-02-15 Thread Sleiman Jneidi
Gora requires that you generate your classes through its compiler and you can't touch these classes , do you really want to do that?? Kundera on the other hand is JPA which is a good idea, but I don't find it natural for HBase, for ex: row key is very important in HBase, so you can't just have a fi

Re: HBase Object Mapper

2015-02-15 Thread Ted Yu
I got some compilation error(s) after cloning your repo ( http://pastebin.com/9nqbxubv). With the following change: http://pastebin.com/jbTHCA56 I was able to build your project. FYI On Sun, Feb 15, 2015 at 6:49 AM, Sleiman Jneidi wrote: > Hi Guys, hope you all had a great weekend. > Recently

Re: HBase Object Mapper

2015-02-15 Thread Sleiman Janeiro
Cool, please try to run the tests, because I was getting strange issues related to versions and the mini cluster Sent from my iPhone > On 15 Feb 2015, at 3:18 pm, Ted Yu wrote: > > I got some compilation error(s) after cloning your repo ( > http://pastebin.com/9nqbxubv). > > With the followi