HBase. How does Put in same row but different column/cell work? -
i inserting data hbase (0.96.1.1) using multiple put(s) 1 , same row-id different cells.
this generate different (default) cell timestamps each consequently put cell.
what impact there on version-relevant stuff? e.g.
- are put(s) of different cells being counted towards version limit in sense when version limit reached, older puts (even tho of different cells) removed/overwritten?
- are these cells affected compactions again, in sense removed?
my question concerns case when put(ing) different cells same row - other cases clear.
a {row, column, version} tuple specifies cell in hbase. since version per column, each column maintain version count , versions of columns eligible removal reach version limit.
Comments
Post a Comment