the answer is partly right. Not true: hbase STORES three versions. Proof see below.
True: you can set the maximum amount of versions which hbase returns through
alter 'marketdata', NAME => 'field', VERSIONS => 100
But for now let's assume, I didn't change the version variable.
I have ten entries in my hbase, with timestamps from 0 to 9.
The most current timestamp is:
hbase(main):025:0> get 'marketdata', 'instrument1', {COLUMN => 'field:ask'}
COLUMN CELL
field:ask timestamp=9, value=0.9940174211042572
1 row(s) in 0.0590 seconds
hbase(main):026:0>
The values from timestamp 1 to 5 that are shown are:
hbase(main):027:0> get 'marketdata', 'instrument1', {COLUMN => 'field:ask', TIMERANGE => [0,5], VERSIONS=>5}
COLUMN CELL
field:ask timestamp=4, value=0.530618878519702
field:ask timestamp=3, value=0.051028316270589014
field:ask timestamp=2, value=0.11949750640509116
3 row(s) in 0.0130 seconds
hbase(main):028:0>
... and when i set my end timestamp to 10, it still shows only the last three versions BEFORE that timestamp and suppresses the former ones:
hbase(main):028:0> get 'marketdata', 'instrument1', {COLUMN => 'field:ask', TIMERANGE => [0,10], VERSIONS=>5}
COLUMN CELL
field:ask timestamp=9, value=0.9940174211042572
field:ask timestamp=8, value=0.6941263513176372
field:ask timestamp=7, value=0.1814043435754933
3 row(s) in 0.0400 seconds
hbase(main):029:0>