I'm trying to put a filter on my HBase Scan object that skips rows that do not have the necessary columns filled in. I figure I should use a skip filter first, but then I get stumped. I don't see in the package summary anything about whether a column is present or not.
Should I use a column value filter, and check to see if the columns in question null or blank? And why do filters return columns (such as ColumnCountGetFilter)? Is there a guide or something someone could point me towards to learn more about Filters that isn't just a collection of javadocs?