登录 注册
当前位置:主页 > 资源下载 > 50 > 在HBase中构建二级索引

在HBase中构建二级索引

  • 更新:2024-08-20 20:46:32
  • 大小:5KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:Hbase - 大数据
  • 格式:TXT

资源介绍

public class IndexBuilder3 extends Configured{ public static class MapperIndex extends TableMapper{ private String tableName; private String columnFamily; private String[] qualifiers; //列为key,索引表表名为value private Map indexs = new HashMap(); @SuppressWarnings("deprecation") @Override protected void map(ImmutableBytesWritable key, Result value, Context context) throws IOException, InterruptedException { //获取所有需要建索引的列 Set keys = indexs.keySet(); for (byte[] k:keys){ // 该列对应的索引表名字