Re: puzzle about hbase row update

2013-07-02 Thread Mohammad Tariq
Yes, it is for the cell. As Ram sir has specified, there are no updates in HBase per se. You either put a new version or delete the old data and put the new data in the same cell. Along with the link specified by Ram sir, I would suggest you to go through this as well : http://hbase.apache.org/book

Re: puzzle about hbase row update

2013-07-02 Thread ch huang
the version is for one row for for one cell? On Tue, Jul 2, 2013 at 4:29 PM, ramkrishna vasudevan < ramkrishna.s.vasude...@gmail.com> wrote: > There are no updates. It just adds one more version to the existing row. > You can try out from the HBase shell. > > http://hbase.apache.org/book.html

Re: puzzle about hbase row update

2013-07-02 Thread ramkrishna vasudevan
There are no updates. It just adds one more version to the existing row. You can try out from the HBase shell. http://hbase.apache.org/book.html - will give an idea on the design and architecture. Regards Ram On Tue, Jul 2, 2013 at 1:56 PM, ch huang wrote: > what happen when i want to updat

puzzle about hbase row update

2013-07-02 Thread ch huang
what happen when i want to update a row ? in hbase it's has udpate conception?