Re: regarding datamodel inside HBase

2009-01-21 Thread shiraz memon
> > Shiraz, > > > > I'm the one who started writing that page in September and I just kicked > my > > lazy ass to at least complete the example. Have a look! > > > > J-D > > > > On Tue, Jan 13, 2009 at 6:06 AM, shiraz memon > > wrote

regarding datamodel inside HBase

2009-01-13 Thread shiraz memon
Hi, I am new to HBase and found it very interesting in terms of fulfilling scalibility requirements of an enterprise. While browsing documentation, unfortunately, I found incomplete article on HBase data model, which can be viewed under http://wiki.apache.org/hadoop/Hbase/DataModel. Do you have an

Re: [ANN] Rhino, a Ruby ORM for HBase

2008-07-29 Thread Shiraz Memon
It was nice to see the ORM for hbase. I had the same idea for representing BigTable of HBase as annotations like as follows (not realised just a proposal): @BigTable(name="Web") public class Web { //annotations for column families and many more } It looks similar to JPA entities and interesting w

Re: minor correction in getting started guide

2008-06-26 Thread Shiraz Memon
oops, but rather: *System.out.println("Found row: " + row.getRow() + " with value: " + new String((byte[]) columns.get(columns.firstKey(;* will display *Found row: myRow with value: columnQualifier1 value!* Shiraz On Thu, Jun 26, 2008 at 10:53 AM, Shiraz Memon <[

minor correction in getting started guide

2008-06-26 Thread Shiraz Memon
Hi, I found one mistake (although very minor) in MyClient.java class which is given as an example test case for beginners in getting started page. I suggest to replace the following line *new String(columns.get("myColumnFamily:columnQualifier1")));* with *new String((byte[])columns.get("myColum

Re: hbase as an embedded.

2008-06-23 Thread Shiraz Memon
> Hi Shiraz, > > By "embedded", do you mean using HBase like one would use an > java.util.HashMap? > > J-D > > > On Mon, Jun 23, 2008 at 6:44 AM, Shiraz Memon <[EMAIL PROTECTED]> > wrote: > >> Hi >> >> very short... >> Can w

hbase as an embedded.

2008-06-23 Thread Shiraz Memon
Hi very short... Can we use hbase as an embedded version inside java program? thanks in advance, Shiraz