gpt4 book ai didi

175、HBase性能调整:一般模式

转载 作者:大佬之路 更新时间:2024-01-07 13:07:09 27 4
gpt4 key购买 nike

HBase一般模式

常量

当人们开始使用HBase时,他们倾向于编写如下所示的代码:

Get get = new Get(rowkey);
Result r = table.get(get);
byte[] b = r.getValue(Bytes.toBytes("cf"), Bytes.toBytes("attr"));  // returns current version of value

但是特别是当内部循环(和MapReduce作业)时,将columnFamily和column-names重复转换为字节数组的成本非常高。最好对字节数组使用常量,如下所示:

public static final byte[] CF = "cf".getBytes();
public static final byte[] ATTR = "attr".getBytes();
...
Get get = new Get(rowkey);
Result r = table.get(get);
byte[] b = r.getValue(CF, ATTR);  // returns current version of value

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com