Re: Not able to change the VERSION of hbase row

2011-11-16 Thread Doug Meil
Also, there is an example of a versioned get here... http://hbase.apache.org/book.html#get On 11/16/11 12:34 PM, "Jean-Daniel Cryans" wrote: >You need to tell the Get or Scan to fetch more versions. For example, >the help for the get commands gives this example: > > hbase> get 't1', 'r1',

Re: Not able to change the VERSION of hbase row

2011-11-16 Thread Doug Meil
Also, there is a versioned Get example here... http://hbase.apache.org/book.html#get On 11/16/11 12:34 PM, "Jean-Daniel Cryans" wrote: >You need to tell the Get or Scan to fetch more versions. For example, >the help for the get commands gives this example: > > hbase> get 't1', 'r1', {CO

Re: Not able to change the VERSION of hbase row

2011-11-16 Thread Jean-Daniel Cryans
You need to tell the Get or Scan to fetch more versions. For example, the help for the get commands gives this example: hbase> get 't1', 'r1', {COLUMN => 'c1', TIMERANGE => [ts1, ts2], VERSIONS => 4} In the API you would use http://hbase.apache.org/apidocs/org/apache/hadoop/hbase/client/Get.htm

Not able to change the VERSION of hbase row

2011-11-16 Thread Vamshi Krishna
Hi, i am trying to create and inserting data to hbase table. when i wanted to change the maximum number of versions of row in hbase from default to 1, it worked well, i.e whenever i add new row to table, the latest value is seen. But when i tried to change using hbase shell like the following i cou