• 【原创】HBase 查询过程中关于scan.setFilter和scan.addColumn的使用


    在对HBase数据库的查询中,用到了SingleColumnValueFilter用于实现对于时间列中某一段时间记录的过滤,并且使用scan.addColumn获取结果中的某一列,

    具体使用如下:

    Scan scan = new Scan();  

    List<Filter> filters = new ArrayList<Filter>();

    String stime = “2012-12-16 00:00:00”;

    String etime= “2012-12-16 00:00:10”;

    Filter filter1 = new SingleColumnValueFilter(cfs[0].getNameAsString().getBytes(),
    "rTime".getBytes(), CompareOp.GREATER_OR_EQUAL,Bytes.toBytes(stime)); 
    filters.add(filter1);

    Filter filter2 = new SingleColumnValueFilter(cfs[0].getNameAsString().getBytes(),
    "rTime".getBytes(), CompareOp.LESS_OR_EQUAL,Bytes.toBytes(etime));
    filters.add(filter2);

    scan.setFilter(filterList1);
    scan.addColumn(cfs[0].getNameAsString().getBytes(), "CARNO".getBytes());
    ResultScanner rs = table.getScanner(scan);

    但是在程序运行中发现,SingleColumnValueFilter设置的时间区间不起作用,返回的是全部的CARNO。但是在加入“scan.addColumn(cfs[0].getNameAsString().getBytes(), "rTime".getBytes());”后,查询结果正确。由此可见如果scan.addColumn中的列不包括在SingleColumnValueFilter中设置的列时,SingleColumnValueFilter是不起作用的。但是不明白这是为神马。。。。。

    此外在测试过程中还发现,对于sql语句

    "select count(*) from monitor where RECORDTIME >=to_date ('2012-12-16 01:00:00','yyyy-mm-dd hh24:mi:ss') and RECORDTIME <=to_date('2012-12-16 02:00:00','yyyy-mm-dd hh24:mi:ss') and monitor='jnc842121' "  的查询,在程序中加入“scan.addColumn(cfs[0].getNameAsString().getBytes(), "rTime".getBytes());” 后,查询时候条件monitor='jnc842121' 不起作用,再加入“MONITOR”列时:“scan.addColumn(cfs[0].getNameAsString().getBytes(), "MONITOR".getBytes())” 结果才是正确的。
     

    select monitor,carno from monitor where recordtime >=to_date ('2012-12-16 00:59:52','yyyy-mm-dd hh24:mi:ss') and recordtime <=to_date('2012-12-16 00:59:52','yyyy-mm-dd hh24:mi:ss') and carno='P5SQ27';当条件中有carno='P5SQ27'这种条件时,在select后面跟的列里面必须含有条件中对应的列,查询出来的结果才正确。

    相同问题的博客:hbase scan中匪夷所思的SingleColumnValueFilter和COLUMNS

  • 相关阅读:
    深入了解ibatis源码----简单ibatis示例代码
    struts深入理解之登录示例的源码跟踪
    struts深入原理之RequestProcessor与xml
    struts学习
    Debugging WebLogic Server Applications Using Eclipse and the WebLogic-Plugin
    论做人与做事
    网络编程I/O功能介绍
    Python标准库:内置函数format(value[, format_spec])
    swift 笔记 (七) —— 关闭
    在自由软件的价值
  • 原文地址:https://www.cnblogs.com/nanxin521/p/4182738.html
Copyright © 2020-2023  润新知