I need to scan a hbase table based on a single column. I want to get all the rows which has the column value from one of the values. i.e I want to get the rows where cf2:q2 is either A or B. I could use singlecolumnvaluefilter but i had to create a filter for each value. So if i have 10 values i have to use 10 filters. I want to know what is the best way to do this? Is there any better way than creating filters for each value?
ROW COLUMN+CELL
row1 column=cf1:q1, timestamp=1321296699190, value=TestName1
row1 column=cf2:q2, timestamp=1321296715892, value=A
row2 column=cf1:q1, timestamp=1321296699190, value=TestName1
row2 column=cf2:q2, timestamp=1321296715892, value=B
row3 column=cf1:q1, timestamp=1321296699190, value=TestName1
row3 column=cf2:q2, timestamp=1321296715892, value=C