How to filter out rows with given column(not null)?
问题 I want to do a hbase scan with filters. For example, my table has column family A,B,C, and A has a column X. Some rows have the column X and some do not. How can I implement the filter to filter out all the rows with column X? 回答1: I guess you are looking for SingleColumnValueFilter in HBase. As mentioned in the API To prevent the entire row from being emitted if the column is not found on a row, use setFilterIfMissing(boolean) on Filter object. Otherwise, if the column is found, the entire