美文网首页我爱编程
hbase shell common filter

hbase shell common filter

作者: siyongshuai | 来源:发表于2018-08-07 19:33 被阅读0次

    PrefixFilter

    scan 'TEST',FILTER=>"PrefixFilter('123_')"

    RowFilter

    scan 'TEST',FILTER=>"RowFilter(=,'substring:ts')"

    PrefixFilter

    scan 'TEST',FILTER=>"PrefixFilter('106_')"

    QualifierFilter

    scan 'TEST',FILTER=>"QualifierFilter(=,'substring:COL_220')

    ColumnPrefixFilter

    scan 'TEST',FILTER=>"ColumnPrefixFilter('COL_217')" ,LIMIT => 10

    scan 'TEST',{FILTER=>"ColumnPrefixFilter('COL_220') AND ColumnPrefixFilter('COL_223')" ,LIMIT => 10}

    ValueFilter

    scan 'TEST', FILTER=>"ValueFilter(=,'substring:ts')"

    相关文章

      网友评论

        本文标题:hbase shell common filter

        本文链接:https://www.haomeiwen.com/subject/njaavftx.html