Is there an easy way to retrieve the RowKey and Timestamp from data in a cassandra column family?
I can get back all the column names and values, but the RowKey value is always missing.
When I try something like FOREACH rows GENERATE RowKey, COUNT($1);
I get the correct result, I just can't see what RowKeys have what counts.
ie:
(,2)
(,1)
Where RowKey x has 2 values and RowKey Y has one value.
I have no idea how to retrieve the timestamp information.
Thanks!
