哎呀丶老张 2014-12-16 12:25
浏览 794

Hbase按任一参数查询方法

这原本是传入两个(time,num)参数进行MapReduceHbase查询的方法,现在方法增加到五个参数(startTime,finishTime,jobGuid,status,num),
想实现输入(startTime,finishTime,num)按开始完成时间查询(guid)按任务编码查询或者(status,num)按任务状态来查询记录。其他几个参数在未输入的情况下用if判断赋空值。
这是原方法我该怎么改写呢。
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) {
        }
    }
}
现在要改成public List<JobInstance> getRecentJobs(long startTime, long finishTime, String jobGuid, int status, int num) {}
  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥40 复杂的限制性的商函数处理
    • ¥15 程序不包含适用于入口点的静态Main方法
    • ¥15 素材场景中光线烘焙后灯光失效
    • ¥15 请教一下各位,为什么我这个没有实现模拟点击
    • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
    • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
    • ¥20 有关区间dp的问题求解
    • ¥15 多电路系统共用电源的串扰问题
    • ¥15 slam rangenet++配置
    • ¥15 有没有研究水声通信方面的帮我改俩matlab代码