Hbase 學習紀錄
  • Introduction
  • HBASE 資料儲存格式
    • Row (Row Key)
    • Column Family
    • Time stamp
  • HBase Architecture
    • HBase 的操作方法
  • HBase 運作機制的聰明運用
Powered by GitBook
On this page

Was this helpful?

  1. HBASE 資料儲存格式

Time stamp

在 HBase 中,我們所儲存的資料,是可以有版本之分的。

而這些版本的區別,可以透過 Time stamp 儲存以及查詢,也就是說我們是可以查詢到修改前修改後的資料。

Time stamp 會在每一次的新增中自行加上去,並預設倒序的將最新的放在最前面。

* Time stamp 是透過 64-bit 的整數儲存。

PreviousColumn FamilyNextHBase Architecture

Last updated 5 years ago

Was this helpful?