HBase性能优化方法总结(三):读表操作

来源:互联网 发布:怎么查看网络是否稳定 编辑:程序博客网 时间:2024/05/18 18:20

转自:http://www.cnblogs.com/panfeng412/archive/2012/03/08/hbase-performance-tuning-section3.html
下面是本文总结的第三部分内容:读表操作相关的优化方法。

  1. 读表操作

3.1 多 HTable 并发读

创建多个 HTable 客户端用于读操作,提高读数据的吞吐量,一个例子:

static final Configuration conf = HBaseConfiguration.create();static final String table_log_name = “user_log”;rTableLog = new HTable[tableN];for (int i = 0; i < tableN; i++) {rTableLog[i] = new HTable(conf, table_log_name);80rTableLog[i].setScannerCaching(50);}

3.2 HTable 参数设置

3.2.1 Scanner Cachinghbase.client.scanner.caching 配置项可以设置 HBase scanner 一次从服务端抓取的数据条数,默认情况下一次一条。通过将其设置成一个合理的值,可以减少 scan 过程中 next()的时间开销,代价是 scanner 需要通过客户端的内存来维持这些被 cache 的行记录。有三个地方可以进行配置: 1)在 HBase 的 conf 配置文件中进行配置; 2)通过调用HTable.setScannerCaching(int scannerCaching)进行配置; 3)通过调用Scan.setCaching(int caching)进行配置。 三者的优先级越来越高。3.2.2 Scan Attribute Selectionscan 时指定需要的 Column Family,可以减少网络传输数据量,否则默认 scan 操作会返回整行所有 Column Family 的数据。3.2.3 Close ResultScanner通过 scan 取完数据后,记得要关闭 ResultScanner,否则 RegionServer 可能会出现问题(对应的 Server 资源无法释放)。

3.3 批量读

通过调用 HTable.get(Get)方法可以根据一个指定的 row key 获取一行记录,同样 HBase 提供了另
一个方法:通过调用 HTable.get(List)方法可以根据一个指定的 row key 列表,批量获取多
行记录,这样做的好处是批量执行,只需要一次网络 I/O 开销,这对于对数据实时性要求高而且
网络传输 RTT 高的情景下可能带来明显的性能提升。

3.4 多线程并发读

在客户端开启多个 HTable 读线程,每个读线程负责通过 HTable 对象进行 get 操作。下面是一个
多线程并发读取 HBase,获取店铺一天内各分钟 PV 值的例子:

public class DataReaderServer {//获取店铺一天内各分钟 PV 值的入口函数public static ConcurrentHashMap<String, String> getUnitMinutePV(long uid, longstartStamp, long endStamp){long min = startStamp;int count = (int)((endStamp - startStamp) / (60*1000));List<String> lst = new ArrayList<String>();for (int i = 0; i <= count; i++) {min = startStamp + i * 60 * 1000;lst.add(uid + "_" + min);}return parallelBatchMinutePV(lst);}//多线程并发查询,获取分钟 PV 值private static ConcurrentHashMap<String, String> parallelBatchMinutePV(List<String>lstKeys){ConcurrentHashMap<String, String> hashRet = new ConcurrentHashMap<String,String>();int parallel = 3;List<List<String>> lstBatchKeys = null;if (lstKeys.size() < parallel ){lstBatchKeys = new ArrayList<List<String>>(1);lstBatchKeys.add(lstKeys);}else{lstBatchKeys = new ArrayList<List<String>>(parallel);for(int i = 0; i < parallel; i++ ){List<String> lst = new ArrayList<String>();lstBatchKeys.add(lst);}81for(int i = 0 ; i < lstKeys.size() ; i ++ ){lstBatchKeys.get(i%parallel).add(lstKeys.get(i));}}List<Future< ConcurrentHashMap<String, String> >> futures = newArrayList<Future< ConcurrentHashMap<String, String> >>(5);ThreadFactoryBuilder builder = new ThreadFactoryBuilder();builder.setNameFormat("ParallelBatchQuery");ThreadFactory factory = builder.build();ThreadPoolExecutor executor = (ThreadPoolExecutor)Executors.newFixedThreadPool(lstBatchKeys.size(), factory);for(List<String> keys : lstBatchKeys){Callable< ConcurrentHashMap<String, String> > callable = newBatchMinutePVCallable(keys);FutureTask< ConcurrentHashMap<String, String> > future = (FutureTask<ConcurrentHashMap<String, String> >) executor.submit(callable);futures.add(future);}executor.shutdown();// Wait for all the tasks to finishtry {boolean stillRunning = !executor.awaitTermination(5000000, TimeUnit.MILLISECONDS);if (stillRunning) {try {executor.shutdownNow();} catch (Exception e) {// TODO Auto-generated catch blocke.printStackTrace();}}} catch (InterruptedException e) {try {Thread.currentThread().interrupt();} catch (Exception e1) {// TODO Auto-generated catch blocke1.printStackTrace();}}// Look for any exceptionfor (Future f : futures) {try {if(f.get() != null){hashRet.putAll((ConcurrentHashMap<String, String>)f.get());}} catch (InterruptedException e) {try {Thread.currentThread().interrupt();} catch (Exception e1) {// TODO Auto-generated catch block82e1.printStackTrace();}} catch (ExecutionException e) {e.printStackTrace();}}return hashRet;}//一个线程批量查询,获取分钟 PV 值protected static ConcurrentHashMap<String, String> getBatchMinutePV(List<String>lstKeys){ConcurrentHashMap<String, String> hashRet = null;List<Get> lstGet = new ArrayList<Get>();String[] splitValue = null;for (String s : lstKeys) {splitValue = s.split("_");long uid = Long.parseLong(splitValue[0]);long min = Long.parseLong(splitValue[1]);byte[] key = new byte[16];Bytes.putLong(key, 0, uid);Bytes.putLong(key, 8, min);Get g = new Get(key);g.addFamily(fp);lstGet.add(g);}Result[] res = null;try {res = tableMinutePV[rand.nextInt(tableN)].get(lstGet);} catch (IOException e1) {logger.error("tableMinutePV exception, e=" + e1.getStackTrace());}if (res != null && res.length > 0) {hashRet = new ConcurrentHashMap<String, String>(res.length);for (Result re : res) {if (re != null && !re.isEmpty()) {try {byte[] key = re.getRow();byte[] value = re.getValue(fp, cp);if (key != null && value != null) {hashRet.put(String.valueOf(Bytes.toLong(key,Bytes.SIZEOF_LONG)), String.valueOf(Bytes.toLong(value)));}} catch (Exception e2) {logger.error(e2.getStackTrace());}}}}return hashRet;}}//调用接口类,实现 Callable 接口class BatchMinutePVCallable implements Callable<ConcurrentHashMap<String, String>>{83private List<String> keys;public BatchMinutePVCallable(List<String> lstKeys ) {this.keys = lstKeys;}public ConcurrentHashMap<String, String> call() throws Exception {return DataReadServer.getBatchMinutePV(keys);}}

3.5 缓存查询结果

对于频繁查询 HBase 的应用场景,可以考虑在应用程序中做缓存,当有新的查询请求时,首先在
缓存中查找,如果存在则直接返回,不再查询 HBase;否则对 HBase 发起读请求查询,然后在应用
程序中将查询结果缓存起来。至于缓存的替换策略,可以考虑 LRU 等常用的策略。
LRU 策略: 简单的说就是缓存一定量的数据,当超过设定的阈值时就把一些过期的数据删除掉。

3.6 Blockcache

HBase 上 Regionserver 的内存分为两个部分,一部分作为 Memstore,主要用来写;另外一部分作
为 BlockCache,主要用于读。
写请求会先写入 Memstore, Regionserver 会给每个 region 提供一个 Memstore,当 Memstore 满
64MB 以后,会启动 flush 刷新到磁盘。当 Memstore 的总大小超过限制时(heapsize *
hbase.regionserver.global.memstore.upperLimit * 0.9),会强行启动 flush 进程,从最大的
Memstore 开始 flush 直到低于限制。
读请求先到 Memstore 中查数据,查不到就到 BlockCache 中查,再查不到就会到磁盘上读,并把
读的结果放入 BlockCache。由于 BlockCache 采用的是 LRU 策略,因此 BlockCache 达到上限
(heapsize * hfile.block.cache.size * 0.85)后,会启动淘汰机制,淘汰掉最老的一批数据。
一个 Regionserver 上有一个 BlockCache 和 N 个 Memstore,它们的大小之和不能大于等于
heapsize * 0.8,否则 HBase 不能启动。默认 BlockCache 为 0.2,而 Memstore 为 0.4。 对于注重
读响应时间的系统,可以将 BlockCache 设大些,比如设置 BlockCache=0.4, Memstore=0.39,
以加大缓存的命中率。

阅读全文
0 0
原创粉丝点击