Hello,
My Hbase table schema is such that each row has different columns for the same column family(timestamp is a part of column name) and I want to read all columns for a particular column family.
Cascading/maple does not seem to support this yet, so I am implementing this in a fork.
I have been looking around in the cascading source code and it seems that 'source' method in cascading.scheme.Scheme does all the actual reading from the database.
Assuming that by using the hbase java api, the column names can be extracted for each row, is it possible to set the columns that must be read dynamically for each row?