- 8
- 0
- 约8.94千字
- 约 6页
- 2017-01-19 发布于重庆
- 举报
HBASE表操作優化
Hbase表写入
View Code JAVA
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
public static boolean createTable(HBaseAdmin admin, HTableDescriptor table, byte[][] splits)
throws IOException {
try {
admin.createTable( table, splits );
return true;
} catch (TableExistsException e) {
(table + table.getNameAsString() + already exists);
// the table already exists...
return false;
}
}
public static byte[][] getHexSplits(String startKey, String endKey, int numRegions) {
byte[][] splits = new byte[numRegions-1][];
BigInteger lowestKey = new BigInteg
您可能关注的文档
最近下载
- 半导体制造工艺第6章金属化.pptx VIP
- 2025届安徽省“江南十校”高三联考英语试卷(含官方答案)原卷.pdf
- 污水处理工艺中的难降解有机物处理技术.pptx VIP
- 工控组态技术及应用—MCGS.ppt VIP
- 西北院编 预埋铁件图集60-BS-FS5A2017-0000-TG-0001.pdf VIP
- 中国急性心肌梗死诊治专家共识(2026版).docx VIP
- 高考之路 与家长共同前行 课件--2023-2024学年高三上学期家长会.pptx VIP
- 透析患者导管的居家护理.pptx
- 兽医学课件-细胞因子.ppt VIP
- 超全!《马克思主义与社会科学方法论》七章思考题答案.pdf VIP
原创力文档

文档评论(0)