codecamp

Scans

Scans

  • 当客户端针对表发出扫描时,HBase会为每个区域生成一个RegionScanner对象来提供扫描请求。
  • 该RegionScanner对象包含一个StoreScanner对象列表,每列族一个。
  • 每个StoreScanner对象还包含StoreFileScanner对应的列表,对应于相应列族的每个StoreFile和HFile,以及MemStore的KeyValueScanner对象列表。
  • 这两个列表被合并为一个,该列表按照升序对列表末尾的MemStore扫描对象进行排序。
  • 当一个StoreFileScanner对象被构造时,它与一个MultiVersionConcurrencyControl读取点(即当前的memstoreTS)相关联,过滤出读取点之外的任何新的更新。
MEMSTORE
HBase使用StoreFile(HFile)
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

HBase快速入门

HBase批量加载

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }