hua的博客 2014-08-15 14:04 采纳率: 0%
浏览 18153

hbase 根据时间范围查询设置key

我需要根据时间范围来查询hbase表中的数据,如果rowkey用时间戳当前缀的话插入性能就会慢。我刚怎么样设计表结构?谁能提供一个实现方案吗?

  • 写回答

1条回答 默认 最新

  • 哎呀丶老张 2014-12-16 11:23
    关注

    public List getRecentJobs(long time, int num) {
    long timestamp = time < 0 ? 0 : TRACE_ROW_KEY_SEED - time;
    String keyPrefix = StringUtils.leftPad("" + timestamp, 16, '0');
    List list = new ArrayList();
    HTableInterface table = null;
    try {
    table = this.getHTable(TABLE_JOB_TRACE);
    byte[] startRow = BytesUtil.toBytes(keyPrefix + "00");
    byte[] stopRow = BytesUtil.toBytes("zz");
    Scan scan = new Scan(startRow, stopRow);
    ResultScanner rs = table.getScanner(scan);

            int i = 0;
            for (Result r : rs) {
                String guid = BytesUtil.toString(r.getRow());
                guid = StringUtils.right(guid, guid.length() - TRACE_ROW_KEY_SEED_LENGTH);
                String correlationId = BytesUtil.toString(r.getValue(CF_INFO, COL_CORRELATIONID));
                String errorMessage = BytesUtil.toString(r.getValue(CF_INFO, COL_ERROR));
                long finishTime = BytesUtil.toLong(r.getValue(CF_INFO, COL_FINISHTIME));
                String name = BytesUtil.toString(r.getValue(CF_INFO, COL_NAME));
                long startTime = BytesUtil.toLong(r.getValue(CF_INFO, COL_STARTTIME));
                int status = BytesUtil.toInt(r.getValue(CF_INFO, COL_STATUS));
                String callbackUrl = BytesUtil.toString(r.getValue(CF_INFO, COL_CALLBACK));
                String task = BytesUtil.toString(r.getValue(CF_INFO, COL_TASK));
    
                JobInstance instance = new JobInstance();
            instance.setGuid(guid);
                instance.setCorrelationId(correlationId);
                instance.setErrorMessage(errorMessage);
            instance.setFinishTime(finishTime);
                instance.setName(name);
                instance.setStartTime(startTime);
                instance.setStatus(status);
                instance.setCallbackUrl(callbackUrl);
            instance.setTask(task);
    
                list.add(instance);
                i ++;
                if (i >= num) {
                    break;
                }
            }
    
            return list;
        } catch (IOException e) {
            throw new BeyeException(510, e.getMessage(), e);
        } catch (NullPointerException e) {
            throw new BeyeException(404, e.getMessage(), e);
        } finally {
            try {
                table.close();
            } catch (Exception ex) {
            }
        }
    }
    
    评论

报告相同问题?

悬赏问题

  • ¥15 高德地图点聚合中Marker的位置无法实时更新
  • ¥15 DIFY API Endpoint 问题。
  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办