I want to scan rows in a HTable from hbase shell where a column family (i.e., Tweet) has a particular value (i.e., user_id).
Now I want to find all
To scan a table in hbase on the basis of any column value, SingleColumnValueFilter can be used as :
scan 'tablename' , { FILTER => "SingleColumnValueFilter('column_family','col_name',>, 'binary:1')" }