doing a ValueFilter or a ColumnFilter on hbase shell

后端 未结 3 454
长发绾君心
长发绾君心 2021-01-13 16:49

Could anyone please tell me how to do a qualifier filter or ValueFilter from the hbase shell command line?

3条回答
  •  情话喂你
    2021-01-13 17:16

    Additionally, to scan a specific column for a substring you can do:

    scan 'myTable', { COLUMNS => 'cf:abc', FILTER => "ValueFilter(=, 'substring:myvalue')"}
    

提交回复
热议问题