I'm using Hector to read data from a Cassandra DB. An example for a query:
ColumnQuery<String, String, String> cq = HFactory.createColumnQuery(KEYSPACE, stringSerializer, stringSerializer, stringSerializer);
cq.setColumnFamily(columnFamily).setKey("Some_Key").setName("Column_Name");
QueryResult<HColumn<String, String>> cqRes = cq.execute();
The answer I'm getting (the value of this column) looks like this:
[45404,2]
As far as I know A Column consists of a name, value and a timestamp (As mentioned here for example). I'm not writing to this DB, I only read from it. Is it possible that the datastamps are not written at all? Anyways, is there a sprcific way to pool it (the timestamp) using Hector?